| 3571 | // filesystem.cpp |
| 3572 | cpp11::writable::list fs___FileSystemFromUri(const std::string& path); |
| 3573 | extern "C" SEXP _arrow_fs___FileSystemFromUri(SEXP path_sexp){ |
| 3574 | BEGIN_CPP11 |
| 3575 | arrow::r::Input<const std::string&>::type path(path_sexp); |
| 3576 | return cpp11::as_sexp(fs___FileSystemFromUri(path)); |
| 3577 | END_CPP11 |
| 3578 | } |
| 3579 | // filesystem.cpp |
| 3580 | 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); |
| 3581 | 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