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