码迷,mamicode.com
首页 > 其他好文 > 详细

createReadStream().pipe() Callback

时间:2017-07-05 16:37:44      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:create   str   erro   buffer   size   style   const   function   func   

const stream = fs.createReadStream(‘<filepath>/example.pdf‘, {bufferSize: 64 * 1024})
stream.pipe(res);

let had_error = false;
stream.on(‘error‘, function(err){
  had_error = true;
});
stream.on(‘close‘, function(){
  if (!had_error) fs.unlink(‘<filepath>/example.pdf‘);
});

 

createReadStream().pipe() Callback

标签:create   str   erro   buffer   size   style   const   function   func   

原文地址:http://www.cnblogs.com/yudis/p/7121924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!