Windows Batch script snippets

How to merge all CSV files of a folder

You just have to copy the following code and past into Notepad, then save with .cmd extension and execute it.

Please execute the BAT file from the file that contains the CSV files.

@echo off
copy *.csv Union.csv

Back to Windows Batch script cookbook page