chore: 整理electron目录

This commit is contained in:
qier222 2022-05-13 19:30:13 +08:00
parent ca4725a46e
commit 8d7ae405a6
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
15 changed files with 160 additions and 68 deletions

View file

@ -0,0 +1,19 @@
import log from './log'
import { app } from 'electron'
import {
createDirIfNotExist,
devUserDataPath,
isDev,
portableUserDataPath,
} from './utils'
if (isDev) {
createDirIfNotExist(devUserDataPath)
app.setPath('appData', devUserDataPath)
}
if (process.env.PORTABLE_EXECUTABLE_DIR) {
createDirIfNotExist(portableUserDataPath)
app.setPath('appData', portableUserDataPath)
}
log.info(`[index] userData path: ${app.getPath('userData')}`)