Possible Duplicate:
Any command-line or batch cmd to concatenate multiple files?
I have over a thousand text files which I would like to combine into a single text file, is there any way to do this automatically?
Possible Duplicate:
Any command-line or batch cmd to concatenate multiple files?
I have over a thousand text files which I would like to combine into a single text file, is there any way to do this automatically?
Pull out your command line and let's go:
copy /a *.txt concat.txt
This will concatenate all txt files in the same directory into one file named "concat.txt".
/A indicates an ASCII text file