如何使用fs.appendFileSync [Nodejs]创建特定大小的文件

时间:2018-10-17 06:58:19

标签: node.js stream

在下面的代码中,我们如何创建特定大小的文件,因为要循环的数组的末尾有一些额外的字节,我想将它们剥离掉。

function writingFile(){
const totalSize = 5245330 //FileSize
let numReadBytes = 0
while (totalSize> numReadBytes){
  for (let i =0; i <partArray.length; i++){
    my_array[i] = await this.read(arrayResponses[i])
   }
 numReadBytes+=640
 fs.appendFileSync('tested.jpg', Buffer.concat(my_array))
  }
}

0 个答案:

没有答案