Merge CSV Files

T

Tom

Is there a way to merge multiple CSV files to get all the rows in the same txt
file?

Thanks!

Tom
 
A

Allen Browne

At the command prompt:
copy file1.csv + file2.csv target.csv

If you need to do it programatically, see help on Open, Line Input, Print #,
EOF(), and Close.
 
Top