Reputation: 645
I'm currently importing the using Microsoft.VisualBasic.FileIO;
in my project to utilize FileSystem.CopyFile
like so:
FileSystem.CopyFile(sourceFile, destFile, UIOption.AllDialogs);
Does this library support a way to extract the elapsed time of the file copy?
Ex. Returning an int of how many seconds the transfer took?
Any help is appreciated, thanks!
Upvotes: 0
Views: 154