mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 23:40:45 +00:00
23 lines
661 B
TypeScript
23 lines
661 B
TypeScript
import type { Dirent } from "node:fs";
|
|
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
|
|
export async function resolveAgentSessionDirs(stateDir: string): Promise<string[]> {
|
|
const agentsDir = path.join(stateDir, "agents");
|
|
let entries: Dirent[] = [];
|
|
try {
|
|
entries = await fs.readdir(agentsDir, { withFileTypes: true });
|
|
} catch (err) {
|
|
const code = (err as { code?: string }).code;
|
|
if (code === "ENOENT") {
|
|
return [];
|
|
}
|
|
throw err;
|
|
}
|
|
|
|
return entries
|
|
.filter((entry) => entry.isDirectory())
|
|
.map((entry) => path.join(agentsDir, entry.name, "sessions"))
|
|
.toSorted((a, b) => a.localeCompare(b));
|
|
}
|