Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
180
Status 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
188
namespace {
189
Callers
3
garrow_file_system_delete_files
Function · 0.80
TestDeleteFiles
Method · 0.80
fs___FileSystem__DeleteFiles
Function · 0.80
Calls
2
DeleteFile
Function · 0.85
OK
Function · 0.50
Tested by
1
TestDeleteFiles
Method · 0.64