electron getpath

Solutions on MaxInterview for electron getpath by the best coders in the world

showing results for - "electron getpath"
Ibrahima
05 Jan 2019
1const { app } = require('electron')
2app.getPath('userData')
3
4// or
5
6const { remote } = require('electron')
7remote.app.getPath('userData')