Guys I have been creating a program that copies and moves files from folder to folder;
I am using this sort of code;
fileToCopy.CopyTo("path here...")
or
FileToMove.MoveTo("path here...")
My problem is, when I am copying or moving a large file, It's taking so much time and my program is hanging until all the files are completely moved or copied. How about, using a progressbar instead, so that the user will be able to see the progress of copying and moving instead of the program freezing? If this is doable, can anyone share knowledge about it? Thanks in advance...