| 3417 | // filesystem.cpp |
| 3418 | void fs___FileSystem__DeleteFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3419 | extern "C" SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){ |
| 3420 | BEGIN_CPP11 |
| 3421 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3422 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3423 | fs___FileSystem__DeleteFile(file_system, path); |
| 3424 | return R_NilValue; |
| 3425 | END_CPP11 |
| 3426 | } |
| 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){ |
nothing calls this directly
no test coverage detected