| 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){ |
| 3453 | BEGIN_CPP11 |
| 3454 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3455 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3456 | fs___FileSystem__DeleteDirContents(file_system, path); |
| 3457 | return R_NilValue; |
| 3458 | END_CPP11 |
| 3459 | } |
| 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){ |
nothing calls this directly
no test coverage detected