| 163 | } |
| 164 | |
| 165 | void OHDFilesystemUtil::remove_if_existing(const std::string &filename) { |
| 166 | if (exists(filename)) { |
| 167 | std::filesystem::remove(filename); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | void OHDFilesystemUtil::make_file_read_write_everyone( |
| 172 | const std::string &filename) { |
nothing calls this directly
no outgoing calls
no test coverage detected