我正在尝试使用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
是否需要安装和导入另一个模块..或者我该如何使其工作?
答案 0 :(得分:2)
是的,url
是内置节点模块之一
只做
var url = require('url');
您文件中的某处。
exec
是child_process
的一部分,所以要做到这一点
var exec = require('child_process').exec;