Garden 🌻

Path::exists

Return True if this path exists.

Path{ p: "/" }.exists() //-> True
Path{ p: "/no_such_file" }.exists() //-> False

Note that a path may exist without the current user having permission to read it.

Source Codepublic method exists(this: Path): Bool {
  __BUILTIN_IMPLEMENTATION
}