Hello,
is there a way to know how much time has passed during copy operations with files?
Let's say I need to copy a very large file and I want to show the operation progress with a progress bar...
Thanks!
Hello,
is there a way to know how much time has passed during copy operations with files?
Let's say I need to copy a very large file and I want to show the operation progress with a progress bar...
Thanks!
No, it uses methods internally that don't give that kind of feedback, you'd need to write your own block-by-block copy so you can measure its progress.
Just as I thought.
Thanks anyway!