Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
2.6k views
in .NET FTP by (460 points)
Like Retry/Resume on exception
Thank you in advance

1 Answer

0 votes
by (161k points)
Something like:

try
{
    ftp.UploadFile(localeFile, remoteFile);
}
catch (IOException ex)
{
    // log the error
    ftp.ResumeTransfer();
    ftp.UploadFile(localeFile, remoteFile);
}

Categories

...