| 396 | } |
| 397 | |
| 398 | Status SubTreeFileSystem::DeleteDir(const std::string& path) { |
| 399 | ARROW_ASSIGN_OR_RAISE(auto real_path, PrependBaseNonEmpty(path)); |
| 400 | return base_fs_->DeleteDir(real_path); |
| 401 | } |
| 402 | |
| 403 | Status SubTreeFileSystem::DeleteDirContents(const std::string& path, |
| 404 | bool missing_dir_ok) { |