| 418 | } |
| 419 | |
| 420 | Status SubTreeFileSystem::DeleteFile(const std::string& path) { |
| 421 | ARROW_ASSIGN_OR_RAISE(auto real_path, PrependBaseNonEmpty(path)); |
| 422 | return base_fs_->DeleteFile(real_path); |
| 423 | } |
| 424 | |
| 425 | Status SubTreeFileSystem::Move(const std::string& src, const std::string& dest) { |
| 426 | ARROW_ASSIGN_OR_RAISE(auto real_src, PrependBaseNonEmpty(src)); |