| 99 | } |
| 100 | |
| 101 | Status PyFileSystem::CreateDir(const std::string& path, bool recursive) { |
| 102 | return SafeCallIntoPython([&]() -> Status { |
| 103 | vtable_.create_dir(handler_.obj(), path, recursive); |
| 104 | return CheckPyError(); |
| 105 | }); |
| 106 | } |
| 107 | |
| 108 | Status PyFileSystem::DeleteDir(const std::string& path) { |
| 109 | return SafeCallIntoPython([&]() -> Status { |
nothing calls this directly
no test coverage detected