Hi,
When i download a file as follows.
ftpClient.Progress += FtpClient_DownloadProgress;
ftpClient.Download(fileToDownload.Name, destination);
In the progress event handler is see that the percentage is exposed. What is the best way to know when the download or upload is 100% complete?
Obviously in the FtpClient_DownloadProgress event handler i have access to the percentage but how can i access this outside of the handler i see there is not property on the ftpClient object ?
Should i create another thread etc ?
Thanks and regards