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