| 3528 | // filesystem.cpp |
| 3529 | cpp11::writable::list fs___FileSystemFromUri(const std::string& path); |
| 3530 | extern "C" SEXP _arrow_fs___FileSystemFromUri(SEXP path_sexp){ |
| 3531 | BEGIN_CPP11 |
| 3532 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3533 | return cpp11::as_sexp(fs___FileSystemFromUri(path)); |
| 3534 | END_CPP11 |
| 3535 | } |
| 3536 | // filesystem.cpp |
| 3537 | void fs___CopyFiles(const std::shared_ptr<fs::FileSystem>& source_fs, const std::shared_ptr<fs::FileSelector>& source_sel, const std::shared_ptr<fs::FileSystem>& destination_fs, const std::string& destination_base_dir, int64_t chunk_size, bool use_threads); |
| 3538 | extern "C" SEXP _arrow_fs___CopyFiles(SEXP source_fs_sexp, SEXP source_sel_sexp, SEXP destination_fs_sexp, SEXP destination_base_dir_sexp, SEXP chunk_size_sexp, SEXP use_threads_sexp){ |
nothing calls this directly
no test coverage detected