| 3460 | // filesystem.cpp |
| 3461 | void fs___FileSystem__DeleteFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3462 | extern "C" SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){ |
| 3463 | BEGIN_CPP11 |
| 3464 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3465 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3466 | fs___FileSystem__DeleteFile(file_system, path); |
| 3467 | return R_NilValue; |
| 3468 | END_CPP11 |
| 3469 | } |
| 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){ |
nothing calls this directly
no test coverage detected