DirectoryIsEmpty Method (String, PathFormat) |
[AlphaFS] Determines whether the given directory is empty; i.e. it contains no files and no subdirectories.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static bool IsEmpty(
string directoryPath,
PathFormat pathFormat
)
Public Shared Function IsEmpty (
directoryPath As String,
pathFormat As PathFormat
) As Boolean
public:
static bool IsEmpty(
String^ directoryPath,
PathFormat pathFormat
)
static member IsEmpty :
directoryPath : string *
pathFormat : PathFormat -> bool
Parameters
- directoryPath
- Type: SystemString
The path to the directory. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
BooleanReturns when the directory contains no file system objects.
Returns when directory contains at least one file system object.
See Also