怎样获取当前app的缓存目录?

怎样获取当前app的缓存目录?

HarmonyOS
2024-07-12 11:10:30
浏览
收藏 0
回答 2
待解决
回答 2
按赞同
/
按时间
droidzxy

试试这个呢。


import { common } from '@kit.AbilityKit';


@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  private context = getContext(this) as common.UIAbilityContext;

  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
          .onClick(()=>{
            let applicationContext = this.context.getApplicationContext();
            let cacheDir = applicationContext.cacheDir;
            this.message = cacheDir;

          })
      }
      .width('100%')
    }
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
2024-07-12 17:01:52
怎么不算呢
import common from '@ohos.app.ability.common';

@Entry
@Component
export struct GetCacheDirectoryView {
  private context = getContext(this) as common.UIAbilityContext;
  @State cachePath: string = '';

  build() {
    Column() {
      Text(this.cachePath)
        .margin({ bottom: 24 })
      Button() {

        Text('获取应用程序缓存目录地址')
      }
      .onClick(() => {

        const applicationContext = this.context.getApplicationContext();
        // 获取应用文件路径
        const cacheDir = applicationContext.cacheDir;
        this.cachePath = cacheDir + '/test.txt';
      })
      .width(300)
      .height(50)
    }
    .justifyContent(FlexAlign.Center)
    .width('100%')
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
2024-07-12 18:52:19
相关问题
如何获取当前应用程序缓存目录
1868浏览 • 1回复 待解决
怎样获取app自身bundleName?
584浏览 • 1回复 待解决
HarmonyOS关于下载到缓存目录问题
396浏览 • 1回复 待解决
用file api清理缓存目录
744浏览 • 1回复 待解决
HarmonyOS怎么清除当前应用缓存
620浏览 • 1回复 待解决
如何获取缓存数据和清理缓存
267浏览 • 1回复 待解决
HarmonyOS APP有没有清除缓存接口
351浏览 • 1回复 待解决
HarmonyOS如何获取当前app版本号和code
661浏览 • 1回复 待解决
如何获取preference中缓存值?
312浏览 • 1回复 待解决
怎样判断当前设备是否连接了VPN?
452浏览 • 1回复 待解决
怎样在根目录中创建文件夹
3933浏览 • 1回复 待解决
HarmonyOS 怎样获取系统音频延时
301浏览 • 1回复 待解决
获取当前设备屏幕方向
380浏览 • 1回复 待解决
获取当前网络状态方法
681浏览 • 1回复 待解决
如何获取当前HAPBundleName?
374浏览 • 1回复 待解决
如何获取当前设备宽度?
592浏览 • 1回复 待解决