| 609 | } |
| 610 | |
| 611 | Status HadoopFileSystem::Delete(const std::string& path, bool recursive) { |
| 612 | return impl_->Delete(path, recursive); |
| 613 | } |
| 614 | |
| 615 | Status HadoopFileSystem::DeleteDirectory(const std::string& path) { |
| 616 | return Delete(path, true); |
no outgoing calls