existsAsFile

Checks if the path exists as a file.

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

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

Meta