首页 > 代码库 > Electron 调用系统工具记事本、计算器等

Electron 调用系统工具记事本、计算器等

const child = require(‘child_process‘).exec;
child(‘notepad‘, function(err, data) {});//打开记事本
child(‘calc‘, function(err, data) {});//打开计算器

 

Electron 调用系统工具记事本、计算器等