Keep a list of appdata paths that we know about

This commit is contained in:
Manav Rathi 2024-02-19 19:02:49 +05:30
parent c6711742fc
commit 4dae5616af

View file

@ -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);
});