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