How can I know the bytes current being copied during copying large file in .net?
I used to File.Copy
method for copying file.
The problem is I can't know the current state during copying file.
Is there anyway that I can check how much the file is being copied? or get a return value?
If not, do I have to make my own method with Filestream
or something?
Sorry about my poor English & thanks in advance.