#鸿蒙学习大百科#如何使用HarmongOS的异步能力实现单次I/O任务逻辑?-鸿蒙开发者社区-51CTO.COM

#鸿蒙学习大百科#如何使用HarmongOS的异步能力实现单次I/O任务逻辑?

如何使用HarmongOS的异步能力实现单次I/O任务逻辑?

HarmongOS
2024-10-14 09:16:11
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
被窝终结者
import { fileIo } from '@kit.CoreFileKit'
import { BusinessError } from '@kit.BasicServicesKit';
async function write(data: string, file: fileIo.File): Promise<void> {
  fileIo.write(file.fd, data).then((writeLen: number) => {
    console.info('write data length is: ' + writeLen)
  }).catch((err: BusinessError) => {
    console.error(`Failed to write data. Code is ${err.code}, message is ${err.message}`);
  })
}
分享
微博
QQ
微信
回复
2024-10-14 14:49:11
相关问题
#鸿蒙学习大百科#如何实现ui优化?
147浏览 • 1回复 待解决
如何优化鸿蒙系统文件 I/O 操作?
67浏览 • 0回复 待解决