I am trying to copy a lot of files using a loop and CopyTo method. The copy is very slow. abot 10 mb per minute! (in contrast to right click in mouse and copy).
Is there any alternatives to use, which are faster?
|
I think this will help: File.Copy vs. Manual FileStream.Write For Copying File It also explains why the copy function is slow. |
||||
|
|
|
Yes, use
Adjust the |
||||
|
|
|
The fastest (and most convenient) way to copy a file is probably |
|||
|
|
CopyTomethod which is quite slow as compared to Window'srightclick->copy->pastein C#? – Haris Hasan Jun 23 '11 at 10:25