1

我正在尝试使用 nodejs 的 WGET 方法进行文件下载。我找到了这个:

var exec = require('exec');

// Function to download file using wget
var download_file_wget = function(file_url) {

    // extract the file name
    var file_name = url.parse(file_url).pathname.split('/').pop();
    // compose the wget command
    var wget = 'wget -P ' + DOWNLOAD_DIR + ' ' + file_url;
    // excute wget using child_process' exec function

    var child = exec(wget, function(err, stdout, stderr) {
        if (err) throw err;
        else console.log(file_name + ' downloaded to ' + DOWNLOAD_DIR);
    });
};

但它说:

Error: Cannot find module 'exec'

是否exec要安装和导入另一个模块..或者我怎样才能使它工作?

4

1 回答 1

2

是的,url是内置节点模块之一

做就是了

var url = require('url');

在你文件的某个地方。

execchild_process这样做的一部分

var exec = require('child_process').exec;
于 2012-06-20T03:37:28.897 回答