FtpActionOnExistingFiles Enum
Namespace: Rebex.Net
Assembly: Rebex.Ftp.dll (version 7.0.9083)
Specifies the default action to perform when a target file already exists. However, the default action can still be changed using the ProblemDetected event.
Syntax
public enum FtpActionOnExistingFiles
Fields
Name | Description |
---|---|
OverwriteAll | Existing files are to be always overwritten. |
OverwriteDifferentSize | Existing files with different sizes are to be overwritten. |
OverwriteOlder | Existing files are to be overwritten if they are older than source files. This is strongly discouraged because modification dates are often misreported by SFTP servers, making this mode highly unreliable. We strongly recommend to use a different mode or develop a custom solution using the ProblemDetected event. |
ResumeIfPossible | Existing files are to be resumed if they are smaller than source files. |
SkipAll | Existing files are to be always skipped. |
ThrowException | Existing files are to cause the whole multi-file transfer to be canceled and an exception to be raised. |