中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何基于文件路径创建文件流?
微信扫码分享
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; fs.open(cacheDir + "/test.txt", fs.OpenMode.READ_WRITE).then((f: fs.File) => { fs.createStream(f.path, "r", (err: BusinessError, stream: fs.Stream) => { if (err) { console.error("create stream failed with error message: " + err.message + ", error code: " + err.code); } else { console.info("createStream succeed"); } stream.closeSync(); }) }) }) } .width('100%') } .height('100%') } }