Enum FtpCompareOption
- Namespace
- FluentFTP
- Assembly
- FluentFTP.dll
Flags that control how file comparison is performed. If you are unsure what to use, set it to Auto.
[Flags]
public enum FtpCompareOption
- Extension Methods
Fields
Auto = 0
Compares the file size and the checksum of the file (using the first supported hash algorithm). The local and remote file sizes and checksums should exactly match for the file to be considered equal.
Checksum = 4
Compares the checksum or hash of the file using the first supported hash algorithm. Both checksums should exactly match for the file to be considered equal.
DateModified = 2
Compares the date modified of the file. Both dates should exactly match for the file to be considered equal.
Size = 1
Compares the file size. Both file sizes should exactly match for the file to be considered equal.