FilePathEnumerateFiles(DirectoryInfo, String, SearchOption, ActionException) Method
Returns an enumerable collection of files that match a search pattern in a specified path, and optionally searches subdirectories.
Namespace: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.167 -- Release Build+1e132a4d484f1823d39b71639f55ad9da4974e99
Gemstone.IO.FilePath.EnumerateFiles = function(directory, searchPattern, searchOption, exceptionHandler);
- directory DirectoryInfo
- The directory to search.
- searchPattern String (Optional)
- The search string to match against the names of files in the directory. 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 file enumeration.
IEnumerableFileInfoAn enumerable collection of the
FileInfo objects representing the files in the specified directory that match the specified search pattern, or an empty array if no files are found.