| 3377 | // filesystem.cpp |
| 3378 | cpp11::list fs___FileSystem__GetTargetInfos_FileSelector(const std::shared_ptr<fs::FileSystem>& file_system, const std::shared_ptr<fs::FileSelector>& selector); |
| 3379 | extern "C" SEXP _arrow_fs___FileSystem__GetTargetInfos_FileSelector(SEXP file_system_sexp, SEXP selector_sexp){ |
| 3380 | BEGIN_CPP11 |
| 3381 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3382 | arrow::r::Input<const std::shared_ptr<fs::FileSelector>&>::type selector(selector_sexp); |
| 3383 | return cpp11::as_sexp(fs___FileSystem__GetTargetInfos_FileSelector(file_system, selector)); |
| 3384 | END_CPP11 |
| 3385 | } |
| 3386 | // filesystem.cpp |
| 3387 | void fs___FileSystem__CreateDir(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path, bool recursive); |
| 3388 | 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