DirectoryEnumerateFileSystemEntries Method (String, DirectoryEnumerationOptions) |
[AlphaFS] Returns an enumerable collection of file names and directory names in a specified path.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static IEnumerable<string> EnumerateFileSystemEntries(
string path,
DirectoryEnumerationOptions options
)
Public Shared Function EnumerateFileSystemEntries (
path As String,
options As DirectoryEnumerationOptions
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ EnumerateFileSystemEntries(
String^ path,
DirectoryEnumerationOptions options
)
static member EnumerateFileSystemEntries :
path : string *
options : DirectoryEnumerationOptions -> IEnumerable<string>
Parameters
- path
- Type: SystemString
The directory to search. - options
- Type: Alphaleonis.Win32.FilesystemDirectoryEnumerationOptions
DirectoryEnumerationOptions flags that specify how the directory is to be enumerated.
Return Value
Type:
IEnumerableStringAn enumerable collection of file system entries in the directory specified by
path.
Exceptions See Also