Merge pull request #320 from ente-io/document-known-paths
Keep a list of appdata paths that we know about
This commit is contained in:
commit
adcae7ad70
1 changed files with 8 additions and 0 deletions
|
@ -113,6 +113,14 @@ export default function setupIpcComs(
|
|||
});
|
||||
|
||||
ipcMain.handle('get-path', (_, message) => {
|
||||
// By default, these paths are at the following locations:
|
||||
//
|
||||
// * macOS: `~/Library/Application Support/ente`
|
||||
// * Linux: `~/.config/ente`
|
||||
// * Windows: `%APPDATA%`, e.g. `C:\Users\<username>\AppData\Local\ente`
|
||||
// * Windows: C:\Users\<you>\AppData\Local\<Your App Name>
|
||||
//
|
||||
// https://www.electronjs.org/docs/latest/api/app
|
||||
return app.getPath(message);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue