If I'm trying to verify that a file has been successfully uploaded, will this give me a true status:
private void ftpConnection_Uploaded(object sender, FTPFileTransferEventArgs e)
{
if (!e.Succeeded)
throw new Exception("Failure to upload file: " + e.LocalPath);
}