Sign up ×
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute:

I have a maintenance task to copy folders from one server to another. the source folder is big - roughly ~Ks of files / 5-6 tree levels and overall size of ~1GB.

I was using Robocopy.exe and XCOPY.exe from windows command line and their performance is fair, and i wonder if there a faster tool to deliver the task.

of course the actual performance is highly dependend on network overload, but i believe the test cases use the same environment.

share|improve this question

closed as off-topic by Eugene Mayevski 'EldoS Corp, Hans Passant, John Saunders, Linger, Noah May 13 '14 at 18:00

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • "Questions about general computing hardware and software are off-topic for Stack Overflow unless they directly involve tools used primarily for programming. You may be able to get help on Super User." – John Saunders, Linger
If this question can be reworded to fit the rules in the help center, please edit the question.

1  
This question appears to be off-topic because it is not related to programming in any way. – Eugene Mayevski 'EldoS Corp May 13 '14 at 10:12
up vote 2 down vote accepted

Robocopy's speed depends on some options.

/Z option copies files in restart mode. When network goes down while copying, it resume next time. BUT with this option speed is not good.

/MT Creates multi-threaded copies with N threads. N must be an integer between 1 and 128. The default value for N is 8.

Since you have ~Ks of files and local network, try to use more than default 8 threads (around 25) without /Z parameter.

Also supressing file output increase speed.

robocopy source destination /MT:25 /NP /NFL /NDL

With these options we copy millions of files with size above 1TB, and it can utilize all 1Gbit/sec network, so the limit is your network speed as you mentioned.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.