Page 1 of 1

Merge multiple files into one

Posted: Tue Jun 25, 2024 9:25 pm
by IT.Admin
How can I use the "Copy/Move File" action to merge multiple files into one? It creates individual files rather than appending them into one file.

Re: Merge multiple files into one

Posted: Thu Jun 27, 2024 8:52 pm
by Oleg
You can use system command COPY
The command line for RoboTask

Code: Select all

cmd.exe /c copy file1 + file2 + ... + fileN ResultFile
The command COPY is internal command of CMD.EXE. So you need to run CMD.EXE

Re: Merge multiple files into one

Posted: Thu Jun 27, 2024 9:14 pm
by Oleg
For more options of COPY command use command line

Code: Select all

copy /?

Re: Merge multiple files into one

Posted: Fri Jun 28, 2024 9:46 pm
by IT.Admin
Thanks for your suggestion.