Windows上的node.js:是否可以从其pid获取进程的绝对路径?

时间:2019-04-27 17:37:08

标签: node.js windows

我想获取Windows操作系统上正在运行的进程的路径 enter image description here

enter image description here

我可以在node.js中找到他的pid

 var exec = require('child_process').exec;
    exec('tasklist', function(err, stdout, stderr) {
            var lines = stdout.toString().split('\n');
            var results = new Array();
            lines.forEach(function (line) {
                if (line.indexOf('GestionDocument') > -1) {
                    console.log(line);
                    var parts = line.split(/[\s,]+/);
                    console.log(parts[1]);
                }
}); 

显示我

  

16248

您知道如何从他的pid获取进程的路径文件夹吗?

0 个答案:

没有答案