HarmonyOS 通过步骤2获取应用缓存目录,删除目录,通过步骤1获取缓存还是有一些字节内存,无法彻底删除干净

三方库版本:import storageStatistics from "@ohos.file.storageStatistics"; import fs from '@ohos.file.fs';

操作步骤:

let bundleStats = await storageStatistics.getCurrentBundleStats();
// 读取缓存
this.cacheSize = bundleStats.cacheSize;
const cacheDir = getContext(this).getApplicationContext().cacheDir
fs.rmdirSync(cacheDir);
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

cacheSize包含以下几个目录,仅清理应用沙箱路径下的cache还显示有大小是正常规格。

/data/storage/el1/base/cache

/data/storage/el1/base/haps/entry/cache

/data/storage/el2/base/cache

/data/storage/el2/base/haps/entry/cache

清理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);
          });
        }
      }

    })
  }
}

获取应用文件路径:

https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/application-context-stage-V5#获取应用文件路径

分享
微博
QQ
微信
回复
2天前
相关问题
如何获取当前应用程序缓存目录
2008浏览 • 1回复 待解决
怎样获取当前app的缓存目录
683浏览 • 2回复 待解决
HarmonyOS 缓存无法清理干净
46浏览 • 1回复 待解决
HarmonyOS 应用缓存清理不彻底
40浏览 • 1回复 待解决
用file api清理缓存目录
844浏览 • 1回复 待解决
如何获取一些应用开发必要信息
365浏览 • 1回复 待解决
如何删除preferences中缓存的数据?
541浏览 • 1回复 待解决
HarmonyOS关于下载到缓存目录的问题
604浏览 • 1回复 待解决
如何通过命令号清除应用缓存
2197浏览 • 1回复 待解决
HarmonyOS 如何获取应用缓存并清理
53浏览 • 1回复 待解决
如何获取缓存数据和清理缓存
410浏览 • 1回复 待解决