| 86 | } |
| 87 | |
| 88 | String GetTempChildPath() |
| 89 | { |
| 90 | String path; |
| 91 | do |
| 92 | { |
| 93 | path = paths::ConcatPath(GetTemporaryPath(), strutils::format(_T("%08x"), rand())); |
| 94 | } while (paths::IsDirectory(path) || !paths::CreateIfNeeded(path)); |
| 95 | return path; |
| 96 | } |
| 97 | |
| 98 | void SetProgPath(const String& path) |
| 99 | { |
no test coverage detected