Electron 获取exe所在路径

Index.html 中获取方式:


Index.js 中获取方式

const { app } = electron;
var path = require('path');
var exePath = path.dirname(app.getPath('exe'));
console.log(exePath);

你可能感兴趣的:(Electron 获取exe所在路径)