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

Function _arrow_fs___FileSystem__DeleteDirContents

r/src/arrowExports.cpp:3409–3416  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3407// filesystem.cpp
3408void fs___FileSystem__DeleteDirContents(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3409extern "C" SEXP _arrow_fs___FileSystem__DeleteDirContents(SEXP file_system_sexp, SEXP path_sexp){
3410BEGIN_CPP11
3411 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3412 arrow::r::Input<const std::string&>::type path(path_sexp);
3413 fs___FileSystem__DeleteDirContents(file_system, path);
3414 return R_NilValue;
3415END_CPP11
3416}
3417// filesystem.cpp
3418void fs___FileSystem__DeleteFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3419extern "C" SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected