isHidden

Check if path is hidden.

nothrow
bool
isHidden
(
in string path
)

Examples

version(Posix) {
    assert(!"path/to/normal_file".isHidden());
    assert("path/to/.hidden_file".isHidden());
}

Meta