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

Function _arrow_fs___FileSystem__DeleteFile

r/src/arrowExports.cpp:3419–3426  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3417// filesystem.cpp
3418void fs___FileSystem__DeleteFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3419extern "C" SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){
3420BEGIN_CPP11
3421 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3422 arrow::r::Input<const std::string&>::type path(path_sexp);
3423 fs___FileSystem__DeleteFile(file_system, path);
3424 return R_NilValue;
3425END_CPP11
3426}
3427// filesystem.cpp
3428void fs___FileSystem__DeleteFiles(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths);
3429extern "C" SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected