Re: Really fast way to combine multiple files


[ Delphi Forum ] [ Delphi Tutorials -- by DelphiLand ]

Posted by Mike Stirling on September 24, 2003

In Reply to: Re: Really fast way to combine multiple files posted by MNM on September 20, 2003:

: Hi, is there anyway to set this bat file up to combine a mess of text files? An example would be super helpful. THANKS!


I've fudged a version to do it with .txt files. Change combine.bat file to just the following line:

FOR %%1 in (*.txt) do type %%1 >> project.txt


Big props to Guido for coming up with this in the first place, it's very helpful :)


[ Delphi Forum ] [ Delphi Tutorials -- by DelphiLand ]