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

Function _arrow_fs___FileSystem__DeleteFiles

r/src/arrowExports.cpp:3429–3436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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){
3430BEGIN_CPP11
3431 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3432 arrow::r::Input<const std::vector<std::string>&>::type paths(paths_sexp);
3433 fs___FileSystem__DeleteFiles(file_system, paths);
3434 return R_NilValue;
3435END_CPP11
3436}
3437// filesystem.cpp
3438void fs___FileSystem__Move(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest);
3439extern "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