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

Function DeleteDirContents

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

Source from the content-addressed store, hash-verified

250 /// Passing an empty path ("" or "/") is disallowed, see DeleteRootDirContents.
251 virtual Status DeleteDirContents(const std::string& path, bool missing_dir_ok) = 0;
252 Status DeleteDirContents(const std::string& path) {
253 return DeleteDirContents(path, false);
254 }
255
256 /// Async version of DeleteDirContents.
257 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