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

Method DeleteFiles

cpp/src/arrow/filesystem/filesystem.cc:180–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180Status FileSystem::DeleteFiles(const std::vector<std::string>& paths) {
181 Status st = Status::OK();
182 for (const auto& path : paths) {
183 st &= DeleteFile(path);
184 }
185 return st;
186}
187
188namespace {
189

Callers 3

TestDeleteFilesMethod · 0.80

Calls 2

DeleteFileFunction · 0.85
OKFunction · 0.50

Tested by 1

TestDeleteFilesMethod · 0.64