DirectoryEnumerateFileSystemEntries Method (String) |
Returns an enumerable collection of file names and directory names in a specified path.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static IEnumerable<string> EnumerateFileSystemEntries(
string path
)
Public Shared Function EnumerateFileSystemEntries (
path As String
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ EnumerateFileSystemEntries(
String^ path
)
static member EnumerateFileSystemEntries :
path : string -> IEnumerable<string>
Parameters
- path
- Type: SystemString
The directory to search.
Return Value
Type:
IEnumerableStringAn enumerable collection of
FileSystemEntryInfo entries in the directory specified by
path.
See Also