In MS DOS copying several files to one file

dos
edmon picture edmon · Jul 20, 2011 · Viewed 117.5k times · Source

I am trying to take a folder that has several .csv files in it and combine all of these files and the information in them, into one file using MS DOS. Any suggestions?

Answer

marto picture marto · Jul 20, 2011
copy *.csv new.csv

No need for /b as csv isn't a binary file type.