| 167 | } |
| 168 | |
| 169 | FilePtr File::ephemeralFile() { |
| 170 | auto file = temporaryFile(); |
| 171 | DeleteFileW(stringToUtf16(file->fileName()).get()); |
| 172 | file->m_filename = ""; |
| 173 | return file; |
| 174 | } |
| 175 | |
| 176 | String File::temporaryDirectory() { |
| 177 | WCHAR tempPath[MAX_PATH]; |
nothing calls this directly
no test coverage detected