Click or drag to resize

FilePathEnumerateDirectories(DirectoryInfo, String, SearchOption, ActionException) Method

Returns an enumerable collection of subdirectories that match a search pattern in a specified path, and optionally searches subdirectories.

Namespace: GSF.IO
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static IEnumerable<DirectoryInfo> EnumerateDirectories(
	DirectoryInfo directory,
	string searchPattern = "*",
	SearchOption searchOption = SearchOption.AllDirectories,
	Action<Exception> exceptionHandler = null
)
View Source

Parameters

directory  DirectoryInfo
The directory to search.
searchPattern  String  (Optional)
The search string to match against the names of subdirectories in the directory. This parameter can contain a combination of valid literal and wildcard characters, but doesn't support regular expressions.
searchOption  SearchOption  (Optional)
One of the enumeration values that specifies whether the search operation should include only the current directory or should include all subdirectories.
exceptionHandler  ActionException  (Optional)
Handles exceptions thrown during directory enumeration.

Return Value

IEnumerableDirectoryInfo
An enumerable collection of the DirectoryInfo objects representing the subdirectories that match the specified search criteria.
See Also