鸿蒙原生应用开发-ArkTS语言基础类库单次I/O任务开发
Promise和asyncawait提供异步并发能力,适用于单次IO任务的场景开发,本文以使用异步进行单次文件写入为例来提供指导。实现单次IO任务逻辑。importfsfrom'ohos.file.fs';importcommonfrom'ohos.app.ability.common';asyncfunctionwrite(data:string,file:fs.File):Promise{fs.write(file.fd,data).then((writeLen:number){console.info('writedatalengthis:'+writeLen)}).catch((err){console.error(Failedtowritedata.Codeis${...