23 lines
695 B
TypeScript
23 lines
695 B
TypeScript
import { ipcMain, shell } from "electron";
|
|
import { mkdir, stat } from "fs/promises";
|
|
import { db } from "../../core/db";
|
|
import log from "electron-log";
|
|
import path from "node:path";
|
|
|
|
export const registerCommonHandler = () => {
|
|
ipcMain.handle("output:open", async () => {
|
|
await db.read();
|
|
const optPath = db.data.setting.outputPath;
|
|
const resolvedPath = path.resolve(optPath);
|
|
try {
|
|
// 检查路径是否存在
|
|
const stats = await stat(resolvedPath);
|
|
if (stats.isDirectory()) shell.openPath(resolvedPath);
|
|
} catch (error) {
|
|
log.error(error);
|
|
await mkdir(resolvedPath, { recursive: true });
|
|
shell.openPath(resolvedPath);
|
|
}
|
|
});
|
|
};
|