| 156 | } |
| 157 | |
| 158 | bool deleteFile(const std::string& path) |
| 159 | { |
| 160 | if (Debug::Log != nullptr) |
| 161 | Debug::Log->trace("<FileUtils> Delete File at {0}", path); |
| 162 | return std::remove(path.c_str()) == 0; |
| 163 | } |
| 164 | |
| 165 | bool deleteDirectory(const std::string& path) |
| 166 | { |
no test coverage detected