How do I merge several csv files into one big csv file?
All the csv files have the same number of columns and no headers
Important that I can find the saved file once done
How do I merge several csv files into one big csv file?
All the csv files have the same number of columns and no headers
Important that I can find the saved file once done
For windows 7:
Command line solution.
cmd
)cd C:\yourdirectory
)copy *.csv allcsvsmerged.csv
)That's it