single-io-development.md 1.1 KB
Newer Older
G
ge-yafang 已提交
1 2 3 4 5 6 7
# 单次I/O任务开发指导


Promise和async/await提供异步并发能力,适用于单次I/O任务的场景开发,本文以使用异步进行单次文件写入为例来提供指导。


1. 实现单次I/O任务逻辑。
8

9 10 11 12 13 14 15 16 17 18 19 20
    ```ts
    import fs from '@ohos.file.fs';
    import { BusinessError } from '@ohos.base';
    async function write(data: string, filePath: string): Promise<void> {
      let file: fs.File = await fs.open(filePath, fs.OpenMode.READ_WRITE);
      fs.write(file.fd, data).then((writeLen: number) => {
        fs.close(file);
      }).catch((err: BusinessError) => {
        console.error(`Failed to write data. Code is ${err.code}, message is ${err.message}`);
      })
    }
    ```
G
ge-yafang 已提交
21
2. 采用异步能力调用单次I/O任务。示例中的filePath的获取方式请参见[获取应用文件路径](../application-models/application-context-stage.md#获取应用文件路径)
22

23 24 25 26 27 28
    ```ts
    let filePath: string = "path"; // 应用文件路径
    write('Hello World!', filePath).then(() => {
      console.info('Succeeded in writing data.');
    })
    ```