Closed4

electron-store で保存されるファイルを消してリセットしたい

nbstshnbstsh

対象のファイルはどこにあるのか

The data is saved in a JSON file named config.json in app.getPath('userData').

app.getPath('userData') directory 下に、config.json というファイルが保存されるので、こいつを消せば良い

https://github.com/sindresorhus/electron-store

nbstshnbstsh

electron の dev server 起動時に、main process で app.getPath('userData') を console.log して確認

console.log('userData path: ', app.getPath('userData'));

Mac OS だとこんな感じの値↓

/Users/${UserName}/Library/Application Support/${PackageName}
nbstshnbstsh

ファイルを消す

rm /Users/${UserName}/Library/Application Support/${PackageName}/config.json
このスクラップは2023/10/22にクローズされました