| 1. |
Solve : Combining files? |
|
Answer» I know that two files can be combined or added with: Sometimes things turn out simple.check copy /? for what /b does. also, you can make small files and test them out. then you can see what the final file looks like. That's a good idea. I'll do that. ThanksCOPY assumes text files, and will terminate at Control Z and anything ELSE which is not a normally printable character. COPY /B is a BINARY copy, which duplicates every character regardless of whether it is printable. COPY /B file.0* newfile That will work, and is a great way to use up empty disc space. It may however disappoint you, newfile will CONTAIN copies of files in the sequence that they are given by Windows. If you want the contents of file.001 to be followed by file.002 etc etc you need to control the sequence. Regards Alan @OP, if you can afford to install GNU tools (see my sig), common way to do it in *nix can now be done also on Windows Code: [Select]c:\test> cat file.0* >> newfile.txt |
|