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