isDir

fnbool isDir(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R) @property

Returns whether the given file is a directory.

Parameters

nameThe path to the file.

Returns

true if name specifies a directory

Throws

FileException if the given file does not exist.
fnbool isDir(R)(auto ref R name) if (isConvertibleToString!R) @property

ditto