Hacker News new | ask | show | jobs
by Athtar 5411 days ago
Yes, you can have multiple copy operating running in parallel but the way Windows works, the files themselves are copied in serial order (within an individual copy operation). Whereas with tools like RichCopy, you are actually copying multiple files in parallel.

See here for example; http://msinetpub.vo.llnwd.net/d1/keithcombs/blog/images/Rich...

This is incredibly useful when you need to copy folders with a lot of (smaller) files. Think pictures, music, etc.

1 comments

I'd be interested in seeing benchmarks that demonstrate an improvement when doing this. I'd expect that the average case is slower due to increased disk contention.