在 node-webkit 中使用默认程序打开文件

open a file with default program in node-webkit

我想为用户提供他想要编辑文件的任何选项,如何使用特定文件类型的默认程序打开文件?我需要它与 Windows 和 Linux 一起使用,但 Mac 选项也很棒。

检测平台并使用:

  • 'start' 在 Windows
  • 'open' 在 Mac 上
  • 'xdg-open' 在 Linux

正如 PSkocik 所说,首先检测平台并获取命令行:

function getCommandLine() {
   switch (process.platform) { 
      case 'darwin' : return 'open';
      case 'win32' : return 'start';
      case 'win64' : return 'start';
      default : return 'xdg-open';
   }
}

其次,执行命令行后跟路径

var exec = require('child_process').exec;

exec(getCommandLine() + ' ' + filePath);

对于磁盘上的文件:

var nwGui = require('nw.gui');
nwGui.Shell.openItem("/path/to/my/file");

对于远程文件(例如网页):

var nwGui = require('nw.gui');
nwGui.Shell.openExternal("http://google.com/");

我不确定 start 是否像以前的 windows 版本一样工作,但是在 windows 10 上它不像答案中指出的那样工作。它的第一个参数是 window.

的标题

此外 windows 和 linux 之间的行为是不同的。 Windows "start"会执行退出,linux下,xdg-open会等待。

这个功能最终以类似的方式在两个平台上为我工作:

  function getCommandLine() {
     switch(process.platform) {
       case 'darwin' :
         return 'open';
       default:
         return 'xdg-open';
     }
  }

  function openFileWithDefaultApp(file) {
       /^win/.test(process.platform) ? 
           require("child_process").exec('start "" "' + file + '"') :
           require("child_process").spawn(getCommandLine(), [file],
                {detached: true, stdio: 'ignore'}).unref(); 
  }

您可以使用open模块:

npm install --save open

然后在您的 Node.js 文件中调用它:

const open = require('open');
open('my-file.txt');

此模块已包含检测操作系统的逻辑,它运行系统与此文件类型关联的默认程序。

如果您打算使用默认编辑器编写某种类型的提示脚本或只是链接文件打开,您将不得不等到程序结束或失败。

灵感来自 and 个答案。

const {exec} = require('child_process');

let openFile=function(filePath,mute){

    let command=(function() {
        switch (process.platform) { 
            case 'darwin' : return 'open '+filePath+' && lsof -p $! +r 1 &>/dev/null';
            case 'win32' : 
            case 'win64' : return 'start /wait '+filePath;
            default : return 'xdg-open '+filePath+' && tail --pid=$! -f /dev/null';
        }
    })();

    
    if(!mute)console.log(command);
    let child=exec(command);
    if(!mute)child.stdout.pipe(process.stdout);
    
    return new function(){
        this.on=function(type,callback){
            if(type==='data')child.stdout.on('data',callback);
            else if(type==='error')child.stderr.on('data',callback);
            else child.on('exit',callback);
            return this;
        };
        this.toPromise=function(){
            return new Promise((then,fail)=>{
                let out=[];
                this.on('data',d=>out.push(d))
                .on('error',err=>fail(err))
                .on('exit',()=>then(out));
            });
        };
    }();
};

使用:

openFile('path/to/some_text.txt')
.on('data',data=>{
    console.log('output :'+data);
})
.on('error',err=>{
    console.log('error :'+err);
})
.on('exit',()=>{
    console.log('done');
});

或:

openFile('path/to/some_text.txt').toPromise()
.then(output=>{
    console.log('done output :'+output.join('\n'));
}).catch(err=>{
    console.log('error :'+err);
});

PS:让我知道它是否等待 winXX 以外的其他系统(灵感来自 Rauno Palosaari post,但尚未测试)。