I have an application, in VB .Net, that moves large files (Approx. 1 GIG) from a network serever to my local pc. As the file(s) is/are very large, I would like a progress bar smiliar to the one MS uses to do a file copy.
In my application I use:
System.IO.File.Move(OldName, NewName) to actually move files. Is this the best way? Or is there a better way? During the file operation, there is no indication that anything is happening until the move has been completed.
Does anyone have any ideas, suggestions or sample code? Thanks in advance.
In my application I use:
System.IO.File.Move(OldName, NewName) to actually move files. Is this the best way? Or is there a better way? During the file operation, there is no indication that anything is happening until the move has been completed.
Does anyone have any ideas, suggestions or sample code? Thanks in advance.