Posted by Gianluca on April 30, 2009 at 10:37:24:
Hi,
I need to append rows (except the first one)of n csv files into one new csv file.
I tried with:
for /F "skip=1" %f in (.\*.csv) do type %f >> D:\Test\output\all.csv
but it does not work.
do you have any suggestion?
thanks.