node.js - nodejs request模块 如何流式下载文件
高洛峰
高洛峰 2017-04-17 15:56:42
0
2
426

在http模块中 我chunk下载文件 然后创建文件夹把文件存在文件夹里

http.get(src,(res)=>{
    res.on('data',(chunk)=>{
        file += chunk;
    })
    
    res.on('end',()=>{
        var filep = Math.random();
        if(!fs.existsSync(filep)){ //每个文件创建一个文件夹
            var creats = fs.mkdirSync(filep);
            }
        fs.writeFile(filep+'a.mp4',file,(err)=>{
            if (err) throw err;
        });
    })
})

但在request模块里
request('http://google.com/doodle.png').pipe(fs.createWriteStream('doodle.png'))
这种方式 我无法创建文件夹 存储文件 我应当 如何在request 完成如上http模块类似的操作

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(2)
洪涛

After trying it, it seems that the path to createWriteStream must exist and the folder will not be created. Or should I not put it in the pipe to create the folder? Generate it in advance

巴扎黑

Before creating the file, check if the folder exists and create it if it does not exist. Then make a request

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template