| 402 | } |
| 403 | |
| 404 | Status Delete(const std::string& path, bool recursive) { |
| 405 | int ret = driver_->Delete(fs_, path.c_str(), static_cast<int>(recursive)); |
| 406 | CHECK_FAILURE(ret, "delete"); |
| 407 | return Status::OK(); |
| 408 | } |
| 409 | |
| 410 | Status Disconnect() { |
| 411 | int ret = driver_->Disconnect(fs_); |