()
| 62 | * 获取系统数据根目录(固定 ~/.chatlab/) |
| 63 | */ |
| 64 | export function getSystemDataDir(): string { |
| 65 | if (_systemDataDir) return _systemDataDir |
| 66 | _systemDataDir = path.join(os.homedir(), '.chatlab') |
| 67 | return _systemDataDir |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * 获取用户数据根目录(可配置) |
no outgoing calls
no test coverage detected