| 114 | } |
| 115 | |
| 116 | void OHDFilesystemUtil::safe_delete_directory(const std::string &directory) { |
| 117 | if (exists(directory)) { |
| 118 | std::filesystem::remove_all(directory.c_str()); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | void OHDFilesystemUtil::write_file(const std::string &path, |
| 123 | const std::string &content) { |
nothing calls this directly
no outgoing calls
no test coverage detected