| 106 | } |
| 107 | |
| 108 | Status PyFileSystem::DeleteDir(const std::string& path) { |
| 109 | return SafeCallIntoPython([&]() -> Status { |
| 110 | vtable_.delete_dir(handler_.obj(), path); |
| 111 | return CheckPyError(); |
| 112 | }); |
| 113 | } |
| 114 | |
| 115 | Status PyFileSystem::DeleteDirContents(const std::string& path, bool missing_dir_ok) { |
| 116 | return SafeCallIntoPython([&]() -> Status { |
nothing calls this directly
no test coverage detected