-------------------------------------------------------------------------
| 51 | |
| 52 | //------------------------------------------------------------------------- |
| 53 | void CreateEmptyFile(const fs::path& path) |
| 54 | { |
| 55 | std::ofstream ofs; |
| 56 | ofs.open(path.string(), std::ios::out); |
| 57 | } |
| 58 | |
| 59 | //------------------------------------------------------------------------- |
| 60 | std::string RunProcess(const fs::path& program, |
no outgoing calls