HarmonyOS 如何获取Preferences缓存空间大小,以及如何清除Preferences缓存空间

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

清除Preferences:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-data-preferences-V5#clear

获取本应用存储的Preferences大小:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-file-storage-statistics-V5#storagestatisticsgetcurrentbundlestats9

import { BusinessError } from '@kit.BasicServicesKit';
storageStatistics.getCurrentBundleStats().then((BundleStats: storageStatistics.BundleStats) => {
  console.info("getCurrentBundleStats successfully:" + JSON.stringify(BundleStats));
}).catch((err: BusinessError) => {
  console.error("getCurrentBundleStats failed with error:"+ JSON.stringify(err));
});
分享
微博
QQ
微信
回复
2天前
相关问题
如何删除preferences缓存的数据?
567浏览 • 1回复 待解决
HarmonyOS 关于获取缓存清除缓存
28浏览 • 1回复 待解决
HarmonyOS如何清除应用缓存
183浏览 • 0回复 待解决
HarmonyOS 如何清除Web缓存
86浏览 • 1回复 待解决
flutter缓存如何清除
274浏览 • 1回复 待解决
java如何获取手机存储空间大小
6690浏览 • 1回复 待解决
HarmonyOS 如何清除应用缓存
63浏览 • 1回复 待解决
HarmonyOS Web如何实现清除缓存
653浏览 • 1回复 待解决
HarmonyOS 获取设备的存储空间大小
112浏览 • 1回复 待解决
如何获取Preferences实例?
419浏览 • 1回复 待解决
HarmonyOS 清除Web缓存
802浏览 • 0回复 待解决
HarmonyOS 清除app缓存
68浏览 • 1回复 待解决
HarmonyOS 清除缓存功能
375浏览 • 1回复 待解决
HarmonyOS web缓存清除localStorage
57浏览 • 1回复 待解决
如何通过命令号清除应用缓存
2211浏览 • 1回复 待解决