| 3491 | // filesystem.cpp |
| 3492 | void fs___FileSystem__CopyFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest); |
| 3493 | extern "C" SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){ |
| 3494 | BEGIN_CPP11 |
| 3495 | arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp); |
| 3496 | arrow::r::Input<const std::string&>::type src(src_sexp); |
| 3497 | arrow::r::Input<const std::string&>::type dest(dest_sexp); |
| 3498 | fs___FileSystem__CopyFile(file_system, src, dest); |
| 3499 | return R_NilValue; |
| 3500 | END_CPP11 |
| 3501 | } |
| 3502 | // filesystem.cpp |
| 3503 | std::shared_ptr<arrow::io::InputStream> fs___FileSystem__OpenInputStream(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path); |
| 3504 | extern "C" SEXP _arrow_fs___FileSystem__OpenInputStream(SEXP file_system_sexp, SEXP path_sexp){ |
nothing calls this directly
no test coverage detected