| 394 | } |
| 395 | |
| 396 | Status MakeDirectory(const std::string& path) { |
| 397 | int ret = driver_->MakeDirectory(fs_, path.c_str()); |
| 398 | CHECK_FAILURE(ret, "create directory"); |
| 399 | return Status::OK(); |
| 400 | } |
| 401 | |
| 402 | Status Delete(const std::string& path, bool recursive) { |
| 403 | int ret = driver_->Delete(fs_, path.c_str(), static_cast<int>(recursive)); |
nothing calls this directly
no test coverage detected