我试图读取文件块,然后处理每个块,以下代码使用了await-for-of-of-of,这是nodejs中的一项新功能,同样可以替代。
我的代码:
var rFile= fs.createReadStream("sampleFile.txt", {
highWaterMark: 640 * 1024
});
for await (var chunk of rFile){
console.log("chunk", chunk)
await this.upload(chunk)
}
任何帮助将不胜感激。