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

Method MakeDirectory

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

Source from the content-addressed store, hash-verified

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