I have a whole bunch of plain text files named as follows: file1.txt, file2.txt, ..., file14.txt, ... I want to concatenate all of them IN PROPER ORDER to one .txt file. How should I do this programmatically? Batch file running in a command window? Or write a Windows console app?
Either way, could I have the code? Thanks.
More info:
large number of files. A hundred or more each time I do this report.
dir won't give the files in proper sequence: file10.txt appears before file2.txt for example, that's why my emphasis. It seems a for i from 1 to n concatenated to the file name prefix is the best. But I don't know how to do this either in batch mode or to execute command from Windows program.
I am leaning towards doing a Windows console app. Will something like this work?
class Program
{
static void Main(string[] args)
{
string strCmdLine;
System.Diagnostics.Process process1;
process1 = new System.Diagnostics.Process();
Int16 n = Convert.ToInt16(args[1]);
int i;
for (i = 1; i < n; i++)
{
strCmdLine = "/C copy more work here " + args[0] + i.ToString();
System.Diagnostics.Process.Start("CMD.exe", strCmdLine);
process1.Close();
}
}
}
copy file1.txt+file2.txt+file3.txt+and.so.on.txt destination.txt– Michael Burr Jul 23 '11 at 5:07StrCmpLogicalW(which is how explorer sorts), as the command prompt won't sort the numbers properly if the number <10 don't have zero padding. – Sven Jul 23 '11 at 5:53