| 498 | } |
| 499 | |
| 500 | Status HadoopFileSystem::DeleteDirContents(const std::string& path, bool missing_dir_ok) { |
| 501 | if (internal::IsEmptyPath(path)) { |
| 502 | return internal::InvalidDeleteDirContents(path); |
| 503 | } |
| 504 | return impl_->DeleteDirContents(path, missing_dir_ok); |
| 505 | } |
| 506 | |
| 507 | Status HadoopFileSystem::DeleteRootDirContents() { |
| 508 | return impl_->DeleteDirContents("", /*missing_dir_ok=*/false); |
no test coverage detected