DirectoryCountFileSystemObjects Method (String, String, DirectoryEnumerationOptions) |
[AlphaFS] Counts file system objects: files, folders or both) in a given directory.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static long CountFileSystemObjects(
string path,
string searchPattern,
DirectoryEnumerationOptions options
)
Public Shared Function CountFileSystemObjects (
path As String,
searchPattern As String,
options As DirectoryEnumerationOptions
) As Long
public:
static long long CountFileSystemObjects(
String^ path,
String^ searchPattern,
DirectoryEnumerationOptions options
)
static member CountFileSystemObjects :
path : string *
searchPattern : string *
options : DirectoryEnumerationOptions -> int64
Parameters
- path
- Type: SystemString
The directory path. - searchPattern
- Type: SystemString
The search string to match against the names of directories in path. This parameter can contain a
combination of valid literal path and wildcard (WildcardStarMatchAll and WildcardQuestion)
characters, but does not support regular expressions.
- options
- Type: Alphaleonis.Win32.FilesystemDirectoryEnumerationOptions
DirectoryEnumerationOptions flags that specify how the directory is to be enumerated.
Return Value
Type:
Int64The counted number of file system objects.
Exceptions See Also