VDirectory.EnumerateDirectories Method
Namespace: Rebex.IO
Assembly: Rebex.FileSystem.dll (version 7.0.9448)
EnumerateDirectories(String)
Returns an enumerator that yields full paths to directories that are located in the directory identified by the path.
Declaration
public static IEnumerable<string> EnumerateDirectories(string path)
Parameters
| Type | Name | Description |
|---|---|---|
| String | path | The path to the directory that contains directories that should be returned. |
Returns
| Type | Description |
|---|---|
| IEnumerable<String> | An enumerator that yields directories located in the directory identified by the |
EnumerateDirectories(String, String)
Returns an enumerator that yields full paths to directories
that are located in the directory identified by the path
and their name matches the given searchPattern.
Declaration
public static IEnumerable<string> EnumerateDirectories(string path, string searchPattern)
Parameters
| Type | Name | Description |
|---|---|---|
| String | path | The path to the directory that contains directories that should be returned. |
| String | searchPattern | The search pattern to which the name of the returned directory must conform. Search patterns may include '?' and '*' wildcards. |
Returns
| Type | Description |
|---|---|
| IEnumerable<String> | An enumerator that yields directories located in the directory identified by the |
EnumerateDirectories(String, String, SearchOption)
Returns an enumerator that yields full paths to directories
that are located in the directory identified by the path
and their name matches the given searchPattern.
When the searchPattern has value AllDirectories then this method returns all subdirectories recursively;
otherwise returns only directories on the first level of the hierarchy.
Declaration
public static IEnumerable<string> EnumerateDirectories(string path, string searchPattern, SearchOption searchOption)
Parameters
| Type | Name | Description |
|---|---|---|
| String | path | The path to the directory that contains directories that should be returned. |
| String | searchPattern | The search pattern to which the name of the returned directory must conform. Search patterns may include '?' and '*' wildcards. |
| SearchOption | searchOption | When the searchOption has value AllDirectories then this method returns all subdirectories recursively; otherwise returns only directories on the first level of the hierarchy. |
Returns
| Type | Description |
|---|---|
| IEnumerable<String> | An enumerator that yields directories located in the directory identified by the |