MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_fs___FileSystem__Move

Function _arrow_fs___FileSystem__Move

r/src/arrowExports.cpp:3482–3490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3480// filesystem.cpp
3481void fs___FileSystem__Move(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest);
3482extern "C" SEXP _arrow_fs___FileSystem__Move(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){
3483BEGIN_CPP11
3484 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3485 arrow::r::Input<const std::string&>::type src(src_sexp);
3486 arrow::r::Input<const std::string&>::type dest(dest_sexp);
3487 fs___FileSystem__Move(file_system, src, dest);
3488 return R_NilValue;
3489END_CPP11
3490}
3491// filesystem.cpp
3492void fs___FileSystem__CopyFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& src, const std::string& dest);
3493extern "C" SEXP _arrow_fs___FileSystem__CopyFile(SEXP file_system_sexp, SEXP src_sexp, SEXP dest_sexp){

Callers

nothing calls this directly

Calls 1

fs___FileSystem__MoveFunction · 0.85

Tested by

no test coverage detected