DirectoryGetFileSystemEntries Method (KernelTransaction, String) |
Returns the names of all files and subdirectories in the specified directory.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static string[] GetFileSystemEntries(
KernelTransaction transaction,
string path
)
Public Shared Function GetFileSystemEntries (
transaction As KernelTransaction,
path As String
) As String()
public:
static array<String^>^ GetFileSystemEntries(
KernelTransaction^ transaction,
String^ path
)
static member GetFileSystemEntries :
transaction : KernelTransaction *
path : string -> string[]
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The directory for which file and subdirectory names are returned.
Return Value
Type:
StringAn string[] array of the names of files and subdirectories in the specified directory.
Exceptions Remarks
The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries,
you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries,
you must wait for the whole array of entries to be returned before you can access the array.
Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
See Also