admin管理员组文章数量:1345090
I'm attempting to run a simple batch file from my electron application. Here is my code:
globalShortcut.register('Control+B', () => {
log.info('Batch File Triggered: ' + app.getAppPath() + '\\local\\print.bat')
require('child_process').exec(app.getAppPath() + '\\local\\print.bat', function (err, stdout, stderr) {
if (err) {
// Ooops.
// console.log(stderr);
return console.log(err);
}
// Done.
console.log(stdout);
});
})
The batch file should be triggered when Control+B is pressed by the user, but it does not work. The log entry is made, and I've verified the path is correct, but the file is never actually launched.
I found these questions, which ask the same question, but these are 4 years old at this point and none of the answers have worked for me, there is no display, no error, nothing.
- run a windows batch file from node.js
I've also tried the child_process.spawn but that also did nothing noticeable.
var ls = spawn('cmd.exe', ['/c', app.getAppPath() + '\\local\\print.bat']);
How can I launch my batch file from my electron application?
I'm attempting to run a simple batch file from my electron application. Here is my code:
globalShortcut.register('Control+B', () => {
log.info('Batch File Triggered: ' + app.getAppPath() + '\\local\\print.bat')
require('child_process').exec(app.getAppPath() + '\\local\\print.bat', function (err, stdout, stderr) {
if (err) {
// Ooops.
// console.log(stderr);
return console.log(err);
}
// Done.
console.log(stdout);
});
})
The batch file should be triggered when Control+B is pressed by the user, but it does not work. The log entry is made, and I've verified the path is correct, but the file is never actually launched.
I found these questions, which ask the same question, but these are 4 years old at this point and none of the answers have worked for me, there is no display, no error, nothing.
- run a windows batch file from node.js
- http://stackoverflow./questions/21557461/execute-a-batch-file-from-nodejs
I've also tried the child_process.spawn but that also did nothing noticeable.
var ls = spawn('cmd.exe', ['/c', app.getAppPath() + '\\local\\print.bat']);
How can I launch my batch file from my electron application?
Share asked Apr 18, 2018 at 17:59 GrumpyCroutonGrumpyCrouton 8,6207 gold badges37 silver badges80 bronze badges2 Answers
Reset to default 11I've just discovered such an easy way to do this. You can use the electron shell module, like this:
const {shell} = require('electron');
// Open a local file in the default app
shell.openItem(app.getAppPath() + '\\local\\print.bat');
try using the code below
function Process() {
const process = require('child_process');
var ls = process.spawn('script.bat');
ls.stdout.on('data', function (data) {
console.log(data);
});
ls.stderr.on('data', function (data) {
console.log(data);
});
ls.on('close', function (code) {
if (code == 0)
console.log('Stop');
else
console.log('Start');
});
};
Process();
not forgetting to run
npm install child_process
on your terminal
本文标签: javascriptRun batch file from Electron main threadStack Overflow
版权声明:本文标题:javascript - Run batch file from Electron main thread - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743691145a2522732.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论