| 3440 | // filesystem.cpp |
| 3441 | void fs___FileSystem__DeleteDir(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3442 | extern "C" SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp){ |
| 3443 | BEGIN_CPP11 |
| 3444 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3445 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3446 | fs___FileSystem__DeleteDir(file_system, path); |
| 3447 | return R_NilValue; |
| 3448 | END_CPP11 |
| 3449 | } |
| 3450 | // filesystem.cpp |
| 3451 | void fs___FileSystem__DeleteDirContents(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3452 | extern "C" SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){ |
nothing calls this directly
no test coverage detected