MCPcopy Create free account
hub / github.com/apache/arrow / DeleteDir

Method DeleteDir

python/pyarrow/src/arrow/python/filesystem.cc:108–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
delete_dirMethod · 0.45

Tested by

no test coverage detected