Tagged Questions

6
votes
1answer
230 views

Can CopyFileEx be called from a secondary thread?

Is it possible and right to call CopyFileEx and CopyCallback/ProgressRoutine function (ProgressBar.Position will be synchronized) from a thread? Can I declare CopyCallback/ProgressRoutine function ...
5
votes
4answers
4k views

Copy a file without using the windows file cache

Anybody know of a way to copy a file from path A to path B and suppressing the Windows file system cache? Typical use is copying a large file from a USB drive, or server to your local machine. Windows ...
2
votes
1answer
158 views

How to bring up the built-in File Copy dialog?

I'll be copying a large file over the network using my winforms app and I need to show some kind of progress bar. Rather than cook up my own copy routine, I was thinking that it might be better to ...