| 101 | } |
| 102 | |
| 103 | bool OHDFilesystemUtil::exists(const std::string &file) { |
| 104 | return std::filesystem::exists(file); |
| 105 | } |
| 106 | |
| 107 | void OHDFilesystemUtil::create_directory(const std::string &directory) { |
| 108 | std::filesystem::create_directory(directory.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected