Переглянути джерело

Merge pull request #320 from ente-io/document-known-paths

Keep a list of appdata paths that we know about
Manav Rathi 1 рік тому
батько
коміт
adcae7ad70
1 змінених файлів з 8 додано та 0 видалено
  1. 8 0
      src/utils/ipcComms.ts

+ 8 - 0
src/utils/ipcComms.ts

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