FilePathGetFileList Method

Gets a list of files under the specified path. Search wild card pattern (c:\Data\*.dat) can be used for including only the files matching the pattern or path wild-card pattern (c:\Data\*\*.dat) to indicate the inclusion of files under all subdirectories in the list.

Definition

Namespace: Gemstone.IO
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public static string[] GetFileList(
	string path,
	Action<Exception>? exceptionHandler = null
)

Parameters

path  String
The path for which a list of files is to be returned.
exceptionHandler  ActionException  (Optional)
Handles exceptions thrown during file enumeration.

Return Value

String
A list of files under the given path.

See Also