MCPcopy Create free account
hub / github.com/apache/arrow / PathNotFound

Function PathNotFound

cpp/src/arrow/filesystem/util_internal.cc:61–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61Status PathNotFound(std::string_view path) {
62 return Status::IOError("Path does not exist '", path, "'")
63 .WithDetail(StatusDetailFromErrno(ENOENT));
64}
65
66Status IsADir(std::string_view path) {
67 return Status::IOError("Is a directory: '", path, "'")

Callers

nothing calls this directly

Calls 2

IOErrorFunction · 0.85
StatusDetailFromErrnoFunction · 0.85

Tested by

no test coverage detected