通过http.get去下载图片文件是否应该避免使用fs.createWriteStream来写文件? 我注意到createWriteStream的options 默认设置为 { flags: ‘w’, defaultEncoding: ‘utf8’, fd: null, mode: 0o666, autoClose: true } 这似乎涉及到了编码的问题,虽然Buffer支持binary编码,但是总感觉多此一举,使用createWriteStream来写文件效率应该会很低吧?
↧
通过http.get去下载图片文件是否应该避免使用fs.createWriteStream来写文件? 我注意到createWriteStream的options 默认设置为 { flags: ‘w’, defaultEncoding: ‘utf8’, fd: null, mode: 0o666, autoClose: true } 这似乎涉及到了编码的问题,虽然Buffer支持binary编码,但是总感觉多此一举,使用createWriteStream来写文件效率应该会很低吧?