带WGET的NodeJS文件下载器?

时间:2012-06-20 03:35:01

标签: http node.js download exec wget

我正在尝试使用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是否需要安装和导入另一个模块..或者我该如何使其工作?

1 个答案:

答案 0 :(得分:2)

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

只做

var url = require('url');

您文件中的某处。

execchild_process的一部分,所以要做到这一点

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