existsAsDir

Checks if the path exists as a directory.

This is like std.file.isDir, but returns false instead of throwing if the path doesn't exist.

  1. bool existsAsDir(char[] path)
  2. bool existsAsDir(Path!C path)
    @trusted
    bool
    existsAsDir
    (
    C
    )
    (
    in Path!C path
    )
    if (
    isSomeChar!C
    )

Meta