|
FilePathEnumerateDirectories(String, String, SearchOption, ActionException) Method
|
Returns an enumerable collection of file names that match a search pattern in a specified path, and optionally searches subdirectories.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
Syntaxstatic member EnumerateDirectories :
path : string *
?searchPattern : string *
?searchOption : SearchOption *
?exceptionHandler : Action<Exception>
(* Defaults:
let _searchPattern = defaultArg searchPattern "*"
let _searchOption = defaultArg searchOption SearchOption.AllDirectories
let _exceptionHandler = defaultArg exceptionHandler null
*)
-> IEnumerable<string>
GSF.IO.FilePath.EnumerateDirectories = function(path, searchPattern, searchOption, exceptionHandler);
View SourceParameters
- path String
- The relative or absolute path to the directory to search. This string is not case-sensitive.
- searchPattern String (Optional)
- The search string to match against the names of directories in path. This parameter can contain a combination of valid literal path and wildcard (* and ?) 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
IEnumerableStringAn enumerable collection of the full names (including paths) for the directories in the directory specified by
path and that match the specified search pattern and option.
See Also