You are on page 1of 1

Merge (concatenate) Multiple ASCII text files

Open command prompt

Change directory to the folder that contains all your text files

cd c:\temp\textfilelocation

Then type the following command:

Copy *.txt textfile_combined.txt

This will concatenate all .txt files in the current directory into a single file named textfile_combined.txt.

For different filetypes, just replace the *.txt with your desired filetype ie *.csv

You might also like