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

Method MakeDirectory

cpp/src/arrow/io/hdfs.cc:396–400  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

394 }
395
396 Status MakeDirectory(const std::string& path) {
397 int ret = driver_->MakeDirectory(fs_, path.c_str());
398 CHECK_FAILURE(ret, "create directory");
399 return Status::OK();
400 }
401
402 Status Delete(const std::string& path, bool recursive) {
403 int ret = driver_->Delete(fs_, path.c_str(), static_cast<int>(recursive));

Callers

nothing calls this directly

Calls 2

OKFunction · 0.50
MakeDirectoryMethod · 0.45

Tested by

no test coverage detected