mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-12-04 06:33:36 +08:00
20 lines
452 B
TypeScript
20 lines
452 B
TypeScript
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')}`)
|