| 138 | } |
| 139 | |
| 140 | void createFile(const std::string& path) |
| 141 | { |
| 142 | Debug::Log->trace("<FileUtils> Create File at {0}", path); |
| 143 | std::ofstream dst(path, std::ios::binary); |
| 144 | dst.close(); |
| 145 | } |
| 146 | |
| 147 | void copy(const std::string& source, const std::string& target) |
| 148 | { |