I have a Winform with a progress bar, which is being updated from a CopyFileEx call.
My callback function (which I think is the problem) is
CopyFileCallbackAction myCallback(FileInfo source, FileInfo destination, object state, long totalFileSize, long totalBytesTransferred)
{
double dProgress = ((double)totalBytesTransferred / byteCount) * 100.0;
backupWorker.ReportProgress((int)dProgress);
return CopyFileCallbackAction.Continue;
}
and the function I call to use CopyFileEx is (I don't think the CopyFileEx wrapper is relevant to the problem so I haven't posted it)
FileRoutines.CopyFile(new FileInfo(source), new FileInfo(dest), CopyFileOptions.All, myCallback);
byteCount is a long combined total size of all the files to be copied.
If I copy only 1 file it works perfectly, but the problems start when I start copying multiple files.
Whenever a file is copied the value of the progress bar is reset back to 0, so when everything is copied, the only progress shown is the percentage of the last file, so if the combined total of files is 10MB, and there are 5 2MB files, the progress bar only goes up a 5th of the way.
I thought I could work around this by adding totalBytesTransferred to another static variable, something like this
public static long bytesCopied = 0;
CopyFileCallbackAction myCallback(FileInfo source, FileInfo destination, object state, long totalFileSize, long totalBytesTransferred)
{
bytesCopied += totalBytesTransferred;
double dProgress = ((double)bytesCopied / byteCount) * 100.0;
backupWorker.ReportProgress((int)dProgress);
return CopyFileCallbackAction.Continue;
}
but I get unexpected results with this also. It seems as though the bytes being transferred is much more than the total bytes.
I can only assume it has something to do with using a new myCallback for each file, but now I'm really stuck.
Any help would be really appreciated.