| 224 | } |
| 225 | |
| 226 | Status DeleteFile(const std::string& path) { |
| 227 | if (IsDirectory(path)) { |
| 228 | return Status::IOError("path is a directory"); |
| 229 | } |
| 230 | RETURN_NOT_OK(client_->Delete(path)); |
| 231 | return Status::OK(); |
| 232 | } |
| 233 | |
| 234 | Status Move(const std::string& src, const std::string& dest) { |
| 235 | auto st = client_->Rename(src, dest); |
nothing calls this directly
no test coverage detected