Enum FtpLocalExists
- Namespace
- FluentFTP
- Assembly
- FluentFTP.dll
Determines how we handle partially downloaded files
public enum FtpLocalExists
- Extension Methods
Fields
[Obsolete("Append is now renamed to Resume to better reflect its behaviour.", true)] Append = 3
Append is now renamed to Resume.
Overwrite = 0
Restart the download of a file if it is partially downloaded. Overwrites the file if it exists on disk.
Resume = 1
Resume the download of a file if it is partially downloaded. Appends to the file if it exists, by checking the length and adding the missing data. If the file doesn't exist on disk, a new file is created.
Skip = 2
Blindly skip downloading the file if it exists on disk, without any more checks. This is only included to be compatible with legacy behaviour.