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