yeah there are emails in the csv files..
i want to merge 100 CSV files in to 1 big csv file...
is that possible??
as you say it`s csv: is there additional data related to each email-adress (like name, timestamp whatever) that should be kept with the email?
or do you only want to have the emails in plain-text?
You could use "Firebird Email Manager" link is in my sig, (Same site, different page etc).
Although you will still have to do it one at a time, it will be much faster then copy and pasting.
You will just have to select the files one at a time. Just check it out anyway.
Merge all data from the csv files into a single file all.csv
1) Windows Start Button | Run
2) Type cmd and hit enter
3) Go to the folder with the CSV files (for help enter "help cd")
4) Type copy *.csv all.csv and hit enter to copy all data in the files into all.txt.
5) Type exit and hit enter to close the DOS window
There is a software out there which meges all csv/excel files in one. Just search for merge csv files on G.
http://www.themeetingjunction.com/lister.exe
it's mine and it's free
hey bro im having trouble with #3.. does the folder needs to be in the C drive??
Any drive that is writable. You just have to navigate to it from the dos commandline using the "cd" command.
It shouldn't take you longer than 20 seconds. Its really simple.
OR
You could create a batch file like this
1. create a text file (merge.txt) and paste the line below
copy *.csv all.csv
2. Change the extension of the text file to .bat. So it is now called merge.bat
3. Put the merge.bat file in the directory containing the csv files and click it.
4. Job is done
You could create a batch file like this
1. create a text file (merge.txt) and paste the line below
Quote:
copy *.csv all.csv
2. Change the extension of the text file to .bat. So it is now called merge.bat
3. Put the merge.bat file in the directory containing the csv files and click it.
4. Job is done