15

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?

DavidPostill
  • 162,382
CLiown
  • 271

1 Answers1

24

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

JC2k8
  • 3,029