我正在尝试使用Node js子进程打开文件。
我正在使用execFile命令。
我的代码如下:
execFile("C:/Program Files (x86)/Windows Media Player/wmplayer.exe",["a.mp4"] ,(err, stdout, stderr) => {
console.log(stdout, stderr, err)
}).unref()
但是在cmd中只有a.mp4
命令有效。
我尝试了以下操作:
execFile("",["a.mp4"] ,(err, stdout, stderr) => {
console.log(stdout, stderr, err)
}).unref()
或
execFile("a.mp4",(err, stdout, stderr) => {
console.log(stdout, stderr, err)
}).unref()
两者都不起作用。
有没有一种方法可以运行a.mp4
而无需提供运行二进制文件的应用程序路径?
答案 0 :(得分:1)
这实际上可以使用exec完成。
execFile需要第一个参数为可执行文件(.exe)。
exec盲目执行命令的地方。
exec('"a.mp4"', (stdout, stderr, err)=>{
console.log(stdout, stderr, err)
}
这可以正常工作。