import path from "node:path"; import { getUserDataDir } from '../paths'; // 多账号隔离 export function getProfileDir (accountId: string) { return path.join(getUserDataDir(), `profiles`, accountId); }