节点子进程中的通配符

时间:2017-08-23 19:04:27

标签: node.js linux child-process

所以我想使用带有child_process的通配符,但它似乎不起作用。

'use strict';

// child_process.spawnSync(command[, args][, options])
let cp = require('child_process');

let commands = {
    list:'ls',
};

let args = {
    details: '-la',
    path: '/home/music/*.mp3'
};

let worker = cp.spawnSync(commands.list, [args.details, args.path], {encoding : 'utf8'});

console.log(worker.stdout);

我希望目录中具有该特定扩展名的所有文件的列表。我想知道是否可以这种方式使用通配符。

0 个答案:

没有答案