I have several text files which need to be joined together. They all contain data.
I simply want to join the contents of each file in an orderly way, one after another and so forth, and then I want to form 1 file.
For example, there are 4 .txt files, at C:\WorkingFolder\...
They all end with .. 1.txt, ..2.txt, ...3.txt and ...4.txt (for instance Order1.txt, Order2.txt, Order3.txt and Order4.txt. I want to join them all into 1 .txt file called OrdersComb.txt.
The order of the joining of the contents does not have to follow the 1,2,3,4 but that would be fine if it followed that logical pattern.
Open in new window