BuildMaster SDK Reference
Version:
EnumerateDirectories(string path) Method
Returns a sequence containing all of the directories within the specified directory (top-level only; does not recurse).
Syntax
public
static
IEnumerable<SlimDirectoryInfo> EnumerateDirectories(string path)
Parameters
- path
- Type: string
The path of the directory to iterate.
Returns
All subdirectories contained within the specified directory.
Exceptions
System.ArgumentNullException
|
path is null (Nothing in Visual Basic) or empty.
|