#鸿蒙学习大百科#如何阶段文件中的内容只剩下指定的长度的内容?

如何阶段文件中的内容只剩下指定的长度的内容?

HarmonyOS
2024-10-16 08:47:42
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
花鸟吹雪
import { common } from '@kit.AbilityKit';
import fs from '@ohos.file.fs';
import { BusinessError } from '@kit.BasicServicesKit';
@Entry
@Component
struct Index {
  private context = getContext(this) as common.UIAbilityContext;
  build() {
    Row() {
      Column() {
        Text("Hello")
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
          .onClick(() => {
            let applicationContext = this.context.getApplicationContext();
            let cacheDir = applicationContext.cacheDir;
            let dirPath = cacheDir + "/aaa";
            fs.open(dirPath, fs.OpenMode.CREATE | fs.OpenMode.READ_WRITE).then((file: fs.File) => {
              let len = 5//阶段后剩余的长度
              fs.truncate(file.fd,len, (err: BusinessError) => {
                if (err) {
                  console.error("read failed with error message: " + err.message + ", error code: " + err.code);
                } else {
                  console.info("truncate succeed");
                }
                fs.closeSync(file);
              })
            })
          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
分享
微博
QQ
微信
回复
2024-10-16 15:16:05
相关问题