isDirectory overloads
Declared in <bdls_filesystemutil.h>
Return true if a directory currently exists at the specified path.
static
bool
isDirectory(
char const* path,
bool followLinksFlag = false);
» more...
Return whether path names an existing directory.
template<class STRING_TYPE>
static
bool
isDirectory(
STRING_TYPE const& path,
bool followLinksFlag = false);
» more...
true if path is a directory, and false otherwise
| Name | Description |
|---|---|
| path | filesystem path to test |
| followLinksFlag | whether to follow symbolic links |