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

Function IsADir

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

Source from the content-addressed store, hash-verified

64}
65
66Status IsADir(std::string_view path) {
67 return Status::IOError("Is a directory: '", path, "'")
68 .WithDetail(StatusDetailFromErrno(EISDIR));
69}
70
71Status NotADir(std::string_view path) {
72 return Status::IOError("Not a directory: '", path, "'")

Callers 1

MovePathWithDataLakeAPIFunction · 0.85

Calls 2

IOErrorFunction · 0.85
StatusDetailFromErrnoFunction · 0.85

Tested by

no test coverage detected