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