FilePathEnumerateFiles(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: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static IEnumerable<string> EnumerateFiles(
	string path,
	string searchPattern = "*",
	SearchOption searchOption = SearchOption.AllDirectories,
	Action<Exception>? exceptionHandler = null
)
Public Shared Function EnumerateFiles ( 
	path As String,
	Optional searchPattern As String = "*",
	Optional searchOption As SearchOption = SearchOption.AllDirectories,
	Optional exceptionHandler As Action(Of Exception) = Nothing
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ EnumerateFiles(
	String^ path, 
	String^ searchPattern = L"*", 
	SearchOption searchOption = SearchOption::AllDirectories, 
	Action<Exception^>^ exceptionHandler = nullptr
)
Gemstone.IO.FilePath.EnumerateFiles = function(path, searchPattern, searchOption, exceptionHandler);
- 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 files 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 file enumeration.
 
IEnumerableStringAn enumerable collection of the full names (including paths) for the files in the directory specified by 
path and that match the specified search pattern and option.