Click or drag to resize

DirectoryEnumerationOptions Enumeration

[AlphaFS] Directory enumeration options, flags that specify how a directory is to be enumerated.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax
[FlagsAttribute]
public enum DirectoryEnumerationOptions
Members
  Member nameValueDescription
None0None (do not use).
Files1Enumerate files only.
Folders2Enumerate directories only.
FilesAndFolders3Enumerate files and directories.
AsLongPath4Return full path as long full path (Unicode format), only valid when return type is String.
SkipReparsePoints8Skip reparse points during directory enumeration.
ContinueOnException16Suppress any Exception that might be thrown as a result from a failure, such as ACLs protected directories or non-accessible reparse points.
Recursive32Specifies whether to search the current directory, or the current directory and all subdirectories.
BasicSearch64Enumerates the directory without querying the short file name, improving overall enumeration speed.
LargeCache128Enumerates the directory using a larger buffer for directory queries, which can increase performance of the find operation.
See Also