| 605 | } |
| 606 | |
| 607 | Status LocalFileSystem::DeleteFile(const std::string& path) { |
| 608 | RETURN_NOT_OK(ValidatePath(path)); |
| 609 | ARROW_ASSIGN_OR_RAISE(auto fn, PlatformFilename::FromString(path)); |
| 610 | return ::arrow::internal::DeleteFile(fn, /*allow_not_found=*/false).status(); |
| 611 | } |
| 612 | |
| 613 | Status LocalFileSystem::Move(const std::string& src, const std::string& dest) { |
| 614 | RETURN_NOT_OK(ValidatePath(src)); |
nothing calls this directly
no test coverage detected