Page 1 of 1
Combine txt files
Posted: Sun Nov 09, 2008 5:29 am
by slmehl
Can I use TextPad to combine txt files?
Thanks for any help.
L Mehl
Re: Combine txt files
Posted: Sun Nov 09, 2008 3:31 pm
by Ryck
slmehl wrote:Can I use TextPad to combine txt files?
Thanks for any help.
L Mehl
Sure.
Procedure Start.
..Open the first one.
..While you have files to combine.
....Open it.
....Copy all the text.
....Paste to the end of the first one.
....Close that file.
..Repeat.
..Save your now combined first file.
Procedure End.
A more efficient way is not use Textpad if you know any scripting languages. Write a short program to repeatedly open one file for reading and another file - the same one - for appending and copy all the lines from one file to another until all the files are combined to one file.
Re: Combine txt files
Posted: Sun Nov 09, 2008 10:56 pm
by ak47wong
slmehl wrote:Can I use TextPad to combine txt files?
Click
Edit->Insert->Files or press Ctrl+Shift+V.
Or you can do it without TextPad at the command prompt:
C:\> copy source1+source2+... destination
Andrew
Re: Combine txt files
Posted: Sun Nov 09, 2008 11:12 pm
by Ryck
ak47wong wrote:slmehl wrote:Can I use TextPad to combine txt files?
Click
Edit->Insert->Files or press Ctrl+Shift+V.
Or you can do it without TextPad at the command prompt:
C:\> copy source1+source2+... destination
Andrew
Look at that! That's even better!
Learn something every day.