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

Function _arrow_fs___FileSystem__DeleteFile

r/src/arrowExports.cpp:3462–3469  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3460// filesystem.cpp
3461void fs___FileSystem__DeleteFile(const std::shared_ptr<fs::FileSystem>& file_system, const std::string& path);
3462extern "C" SEXP _arrow_fs___FileSystem__DeleteFile(SEXP file_system_sexp, SEXP path_sexp){
3463BEGIN_CPP11
3464 arrow::r::Input<const std::shared_ptr<fs::FileSystem>&>::type file_system(file_system_sexp);
3465 arrow::r::Input<const std::string&>::type path(path_sexp);
3466 fs___FileSystem__DeleteFile(file_system, path);
3467 return R_NilValue;
3468END_CPP11
3469}
3470// filesystem.cpp
3471void fs___FileSystem__DeleteFiles(const std::shared_ptr<fs::FileSystem>& file_system, const std::vector<std::string>& paths);
3472extern "C" SEXP _arrow_fs___FileSystem__DeleteFiles(SEXP file_system_sexp, SEXP paths_sexp){

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected