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.
Namespace: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static string[] GetFileList(
string path,
Action<Exception>? exceptionHandler = null
)
Public Shared Function GetFileList (
path As String,
Optional exceptionHandler As Action(Of Exception) = Nothing
) As String()
public:
static array<String^>^ GetFileList(
String^ path,
Action<Exception^>^ exceptionHandler = nullptr
)
Gemstone.IO.FilePath.GetFileList = function(path, exceptionHandler);
- path String
- The path for which a list of files is to be returned.
- exceptionHandler ActionException (Optional)
- Handles exceptions thrown during file enumeration.
StringA list of files under the given path.