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

Method Move

cpp/src/arrow/filesystem/filesystem.cc:425–429  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

423}
424
425Status SubTreeFileSystem::Move(const std::string& src, const std::string& dest) {
426 ARROW_ASSIGN_OR_RAISE(auto real_src, PrependBaseNonEmpty(src));
427 ARROW_ASSIGN_OR_RAISE(auto real_dest, PrependBaseNonEmpty(dest));
428 return base_fs_->Move(real_src, real_dest);
429}
430
431Status SubTreeFileSystem::CopyFile(const std::string& src, const std::string& dest) {
432 ARROW_ASSIGN_OR_RAISE(auto real_src, PrependBaseNonEmpty(src));

Callers

nothing calls this directly

Calls 1

SleepMethod · 0.80

Tested by

no test coverage detected