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

Method DeleteFile

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

Source from the content-addressed store, hash-verified

127}
128
129Status PyFileSystem::DeleteFile(const std::string& path) {
130 return SafeCallIntoPython([&]() -> Status {
131 vtable_.delete_file(handler_.obj(), path);
132 return CheckPyError();
133 });
134}
135
136Status PyFileSystem::Move(const std::string& src, const std::string& dest) {
137 return SafeCallIntoPython([&]() -> Status {

Callers

nothing calls this directly

Calls 3

SafeCallIntoPythonFunction · 0.85
CheckPyErrorFunction · 0.85
delete_fileMethod · 0.45

Tested by

no test coverage detected