I'm using this to update my log file and track the total files being transferred. When I step through the code this method is being executed twice in a row with the same filename... Why would it call this method twice with the same file name??? Thank you.
ftpConnection_Uploaded(object sender, FTPFileTransferEventArgs e)
Trace.WriteLine("Uploaded file " + e.RemoteFile + " of size " + e.FileSize);
I'm adding the event handler before calling UploadMultiple:
ftpConnection.Uploaded += new FTPFileTransferEventHandler(ftpConnection_Uploaded);