| 3470 | // filesystem.cpp |
| 3471 | void fs___FileSystem__DeleteFiles(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths); |
| 3472 | extern "C" SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){ |
| 3473 | BEGIN_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; |
| 3478 | END_CPP11 |
| 3479 | } |
| 3480 | // filesystem.cpp |
| 3481 | void fs___FileSystem__Move(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest); |
| 3482 | extern "C" SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ |
nothing calls this directly
no test coverage detected