I tried to merge CVS files with the following code:
@echo off break > merged.csv for %%f in (pro*.csv) do for /F "tokens=*" %%g in ('type "%%f"') do echo %%g,%%f >> merged.csv
But I got the file name at the end of each line , Is there any way to make the file name in the first coulmn ?
1.4m articles
1.4m replys
5 comments
57.0k users