| 3420 | // filesystem.cpp |
| 3421 | cpp11::list fs___FileSystem__GetTargetInfos_FileSelector(const std::shared_ptr<fs::FileSystem>& file_system, const std::shared_ptr<fs::FileSelector>& selector); |
| 3422 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ |
| 3423 | BEGIN_CPP11 |
| 3424 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3425 | arrow::r::Input<const std::shared_ptr<fs::FileSelector>&>::type selector(selector_sexp); |
| 3426 | return cpp11::as_sexp(fs___FileSystem__GetTargetInfos_FileSelector(file_system, selector)); |
| 3427 | END_CPP11 |
| 3428 | } |
| 3429 | // filesystem.cpp |
| 3430 | void fs___FileSystem__CreateDir(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path, bool recursive); |
| 3431 | extern "C" SEXP _arrow_fs___FileSystem__CreateDir(SEXP file_system_sexp, SEXP path_sexp, SEXP recursive_sexp){ |
nothing calls this directly
no test coverage detected