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

Function _arrow_fs___FileSystem__DeleteFiles

r/src/arrowExports.cpp:3472–3479  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3470// filesystem.cpp
3471void fs___FileSystem__DeleteFiles(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths);
3472extern "C" SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){
3473BEGIN_CPP11
3474 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3475 arrow::r::Input<const std::vector<std::string>&>::type paths(paths_sexp);
3476 fs___FileSystem__DeleteFiles(file_system, paths);
3477 return R_NilValue;
3478END_CPP11
3479}
3480// filesystem.cpp
3481void fs___FileSystem__Move(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest);
3482extern "C" SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected