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

Method DeleteDirContentsAsync

cpp/src/arrow/filesystem/filesystem.cc:202–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200} // namespace
201
202Future<> FileSystem::DeleteDirContentsAsync(const std::string& path,
203 bool missing_dir_ok) {
204 return FileSystemDefer(this, default_async_is_sync_,
205 [path, missing_dir_ok](std::shared_ptr<FileSystem> self) {
206 return self->DeleteDirContents(path, missing_dir_ok);
207 });
208}
209
210Future<> FileSystem::DeleteDirContentsAsync(const std::string& path) {
211 return DeleteDirContentsAsync(path, false);

Callers

nothing calls this directly

Calls 2

FileSystemDeferFunction · 0.85
DeleteDirContentsMethod · 0.45

Tested by

no test coverage detected