I have a simple winforms application example in which I select a directory in the selection list and click a button to scroll through the directory and copy each file to the directory in a different directory.
I want to make a copy of the file in the background thread to avoid GUI blocking.
I am looking for the simplest solution for:
- Create a background thread
- Pass the source and recipients to
- Get a callback for progress so that I can show a progress bar in the GUI thread.
source share