electron-store:
https://electronjs.org/docs/api/app#appgetpathname
app.getPath(name)
-储存你应用程序设置文件的文件夹,默认是 appData
文件夹附加应用的名称。
appData
-当前用户的应用数据文件夹,默认对应:
%APPDATA%
Windows 中$XDG_CONFIG_HOME
or ~/.config
Linux 中~/Library/Application Support
macOS 中
也就是下面log的上一级目录 应用目录的config.json下面
electron-log:
- on Linux:
~/.config/{app name}/logs/{process type}.log
- on macOS:
~/Library/Logs/{app name}/{process type}.log
- on Windows:
%USERPROFILE%/AppData/Roaming/{app name}/logs/{process type}.log
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/280289.html