HarmonyOS 清理缓存,有没有相关清理缓存一套逻辑和相关代码呢

有没有相关清理缓存一套逻辑和相关代码呢

HarmonyOS
2024-08-04 18:24:40
913浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
kraml

目前没有直接清除缓存的api,查询缓存用storageStatistics.getCurrentBundleStats()接口。

清除文件缓存,需要调用context的cacheDir获取缓存,然后调用系统文件fs接口,判断是文件或者文件夹,再分别消除缓存。

详细用法见下面的链接:查询:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-file-storage-statistics-V5

接口文档地址:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-file-fs-V5

清理文件demo如下:

import fs from ‘@ohos.file.fs’; 
let cacheDir = context.cacheDir; 
@Entry 
@Component 
struct Clear_cache { 
  clearCache() { 
    // let cacheDir = getContext(this).cacheDir 
    // fs.rmdirSync(cacheDir) 
    // console.log(“delete !!!”) 
 
    fs.listFile(cacheDir).then((filenames) => { 
      for (let i = 0;i < filenames.length; i++) { 
        // let dirPath = cacheDir+filenames[i] 
        let dirPath = ${cacheDir}/${filenames[i]} 
        // 判断是否文件夹 
        let isDirectory 
        try { 
          isDirectory = fs.statSync(dirPath).isDirectory() 
        } 
        catch (e) { 
          console.log(e) 
        } 
 
        if (isDirectory) { 
          fs.rmdirSync(dirPath) 
        } else { 
          fs.unlink(dirPath).then(() => { 
            console.info(“remove file succeed”); 
          }).catch((err) => { 
            console.info("remove file failed with error message: " + err.message + ", error code: " + err.code); 
          }); 
        } 
      } 
 
    }) 
  } 
}
  • 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.
  • 36.
  • 37.
分享
微博
QQ
微信
回复
2024-08-05 12:56:39


相关问题
如何获取缓存数据清理缓存
1125浏览 • 1回复 待解决
DevEco有没有清理调试应用缓存的功能
4834浏览 • 1回复 待解决
HarmonyOS 清理缓存问题
531浏览 • 1回复 待解决
HarmonyOS web 清理缓存
474浏览 • 1回复 待解决
HarmonyOS web清理缓存
706浏览 • 1回复 待解决
HarmonyOS 关于应用清理缓存
961浏览 • 1回复 待解决
HarmonyOS ArkWeb如何清理缓存
423浏览 • 1回复 待解决
HarmonyOS 如何清理 web 缓存
453浏览 • 1回复 待解决
HarmonyOS 缓存无法清理干净
730浏览 • 1回复 待解决
HarmonyOS 应用缓存清理不彻底
532浏览 • 1回复 待解决
HarmonyOS 清理app缓存的方法
547浏览 • 1回复 待解决
HarmonyOS 如何清理web的缓存
346浏览 • 1回复 待解决
用file api清理缓存目录
1245浏览 • 1回复 待解决
HarmonyOS 如何清理Image的磁盘缓存
667浏览 • 1回复 待解决
HarmonyOS 如何获取应用缓存清理
499浏览 • 1回复 待解决
鸿蒙一套代码如何做到多端适配
4032浏览 • 1回复 待解决