I need to copy multiple directories from one location to other. So, there are going to be multiple xcopy
statements, one after another.
The number of files in each of the folders is huge. Is there some way by which I can run these xcopy
statements in parallel? One option I can think of is- call each xcopy
in a separate batch file, and call those batch files using @start
instead of @call
.
Is there any other alternative?
/MT[:number]
right? Actually, I need to do this on Windows XP SP3, so need to get Robocopy explicitly. However, I did not fully understand its/MT
usage. Could you please elaborate? – Renaerenaissance