(dirPath: string)
| 383 | * 确保目录存在 |
| 384 | */ |
| 385 | export function ensureDir(dirPath: string): void { |
| 386 | if (!fs.existsSync(dirPath)) { |
| 387 | fs.mkdirSync(dirPath, { recursive: true }) |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * 确保所有应用目录存在(系统数据 + 用户数据) |
no outgoing calls
no test coverage detected