| 83 | } |
| 84 | |
| 85 | Status InvalidDeleteDirContents(std::string_view path) { |
| 86 | return Status::Invalid( |
| 87 | "DeleteDirContents called on invalid path '", path, "'. ", |
| 88 | "If you wish to delete the root directory's contents, call DeleteRootDirContents."); |
| 89 | } |
| 90 | |
| 91 | Result<Uri> ParseFileSystemUri(const std::string& uri_string) { |
| 92 | Uri uri; |
no test coverage detected