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

Function DeleteDirContents

cpp/src/arrow/filesystem/filesystem.h:250–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248 /// Passing an empty path ("" or "/") is disallowed, see DeleteRootDirContents.
249 virtual Status DeleteDirContents(const std::string& path, bool missing_dir_ok) = 0;
250 Status DeleteDirContents(const std::string& path) {
251 return DeleteDirContents(path, false);
252 }
253
254 /// Async version of DeleteDirContents.
255 virtual Future<> DeleteDirContentsAsync(const std::string& path, bool missing_dir_ok);

Callers 2

DeleteDirContentsMethod · 0.70
DeleteDirMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected