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

Method CreateDir

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

Source from the content-addressed store, hash-verified

99}
100
101Status 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
108Status PyFileSystem::DeleteDir(const std::string& path) {
109 return SafeCallIntoPython([&]() -> Status {

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
create_dirMethod · 0.45

Tested by

no test coverage detected