Class EnumerationOptions
Options for enumerating directory entries.
public sealed class EnumerationOptions
- Inheritance
-
EnumerationOptions
- Inherited Members
Properties
ExtendedAttributes
Gets or sets extended attributes to retrieve. Set to null to include all.
public string[]? ExtendedAttributes { get; set; }
Property Value
- string[]
FileTypeFilter
Gets or sets the UnixFileTypeFilter.
public UnixFileTypeFilter FileTypeFilter { get; set; }
Property Value
FollowDirectoryLinks
Gets or sets whether to follow directory symbolic links.
public bool FollowDirectoryLinks { get; set; }
Property Value
FollowFileLinks
Gets or sets whether to follow file symbolic links.
public bool FollowFileLinks { get; set; }
Property Value
RecurseSubdirectories
Gets or sets whether to recurse subdirectories.
public bool RecurseSubdirectories { get; set; }
Property Value
ShouldInclude
Gets or sets SftpFileEntryPredicate to determine if an entry should be included.
public SftpFileEntryPredicate? ShouldInclude { get; set; }
Property Value
ShouldRecurse
Gets or sets SftpFileEntryPredicate to determine if a directory should be recursed.
public SftpFileEntryPredicate? ShouldRecurse { get; set; }