* @brief Get system temporary directory. * @return System temporary director. */
| 168 | * @return System temporary director. |
| 169 | */ |
| 170 | String GetSystemTempPath() |
| 171 | { |
| 172 | try |
| 173 | { |
| 174 | return ucr::toTString(Path::temp()); |
| 175 | } |
| 176 | catch (...) |
| 177 | { |
| 178 | return _T(""); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | static bool launchProgram(const String& sCmd, WORD wShowWindow) |
| 183 | { |
no test coverage detected