| 3427 | // filesystem.cpp |
| 3428 | void fs___FileSystem__DeleteFiles(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths); |
| 3429 | extern "C" SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){ |
| 3430 | BEGIN_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; |
| 3435 | END_CPP11 |
| 3436 | } |
| 3437 | // filesystem.cpp |
| 3438 | void fs___FileSystem__Move(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest); |
| 3439 | 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