| 113 | } |
| 114 | |
| 115 | Status PyFileSystem::DeleteDirContents(const std::string& path, bool missing_dir_ok) { |
| 116 | return SafeCallIntoPython([&]() -> Status { |
| 117 | vtable_.delete_dir_contents(handler_.obj(), path, missing_dir_ok); |
| 118 | return CheckPyError(); |
| 119 | }); |
| 120 | } |
| 121 | |
| 122 | Status PyFileSystem::DeleteRootDirContents() { |
| 123 | return SafeCallIntoPython([&]() -> Status { |
nothing calls this directly
no test coverage detected