()
| 76 | } |
| 77 | |
| 78 | export function getSessionsFolderPath(): string { |
| 79 | const sessionsPath = path.join(getContinueGlobalPath(), "sessions"); |
| 80 | if (!fs.existsSync(sessionsPath)) { |
| 81 | fs.mkdirSync(sessionsPath); |
| 82 | } |
| 83 | return sessionsPath; |
| 84 | } |
| 85 | |
| 86 | export function getIndexFolderPath(): string { |
| 87 | const indexPath = path.join(getContinueGlobalPath(), "index"); |
no test coverage detected