* 清理临时文件
(filePath: string)
| 354 | * 清理临时文件 |
| 355 | */ |
| 356 | function cleanupTempFile(filePath: string): void { |
| 357 | try { |
| 358 | if (fs.existsSync(filePath) && filePath.includes(getTempDir())) { |
| 359 | fs.unlinkSync(filePath) |
| 360 | } |
| 361 | } catch { |
| 362 | // 忽略清理错误 |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * QQ Chat Exporter 预处理器 |
nothing calls this directly
no test coverage detected