| 3407 | // filesystem.cpp |
| 3408 | void fs___FileSystem__DeleteDirContents(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3409 | extern "C" SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){ |
| 3410 | BEGIN_CPP11 |
| 3411 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3412 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3413 | fs___FileSystem__DeleteDirContents(file_system, path); |
| 3414 | return R_NilValue; |
| 3415 | END_CPP11 |
| 3416 | } |
| 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){ |
nothing calls this directly
no test coverage detected