isDir
fn
bool isDir(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R) @propertyReturns whether the given file is a directory.
Parameters
name | The path to the file. |
Returns
true if name specifies a directory
Throws
FileException if the given file does not exist.
fn
bool isDir(R)(auto ref R name) if (isConvertibleToString!R) @propertyditto