MCPcopy Create free account
hub / github.com/OpenHD/OpenHD / exists

Method exists

OpenHD/ohd_common/src/openhd_util_filesystem.cpp:103–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103bool OHDFilesystemUtil::exists(const std::string &file) {
104 return std::filesystem::exists(file);
105}
106
107void OHDFilesystemUtil::create_directory(const std::string &directory) {
108 std::filesystem::create_directory(directory.c_str());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected