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

Function _arrow_fs___FileSystem__DeleteDir

r/src/arrowExports.cpp:3442–3449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3440// filesystem.cpp
3441void fs___FileSystem__DeleteDir(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3442extern "C" SEXP _arrow_fs___FileSystem__DeleteDir(SEXP file_system_sexp, SEXP path_sexp){
3443BEGIN_CPP11
3444 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3445 arrow::r::Input<const std::string&>::type path(path_sexp);
3446 fs___FileSystem__DeleteDir(file_system, path);
3447 return R_NilValue;
3448END_CPP11
3449}
3450// filesystem.cpp
3451void fs___FileSystem__DeleteDirContents(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3452extern "C" SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected