| 229 | |
| 230 | |
| 231 | std::string getTempDirectory() { |
| 232 | try { |
| 233 | return fs::temp_directory_path().generic_u8string(); |
| 234 | } |
| 235 | catch (fs::filesystem_error& e) { |
| 236 | return ""; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | |
| 241 | std::string getAbsolute(const std::string& path) { |
nothing calls this directly
no outgoing calls
no test coverage detected