【uniapp】app计算&清除文件缓存

注意不是Storage缓存是app资源文件缓存

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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<template>
<view>
<view class="cont-wrap">
<view class="listItem" @click="clern">
<view class="itemLeft">
<text>清除缓存</text>
</view>
<view class="itemRight">
<text class="rtext">{{fileSizeString}}</text>
</view>
</view>
</view>
</view>
</template>

<script>
export default {
data() {
return {
fileSizeString: ""
}
},
onLoad() {
this.formatSize();
},
methods: {
// 获取缓存
formatSize() {
let that = this;
// #ifdef APP-PLUS
plus.cache.calculate(function(size) {
let sizeCache = parseInt(size);
if (sizeCache == 0) {
that.fileSizeString = "0B";
} else if (sizeCache < 1024) {
that.fileSizeString = sizeCache + "B";
} else if (sizeCache < 1048576) {
that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
} else if (sizeCache < 1073741824) {
that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
} else {
that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
}
});
// #endif
},
// 清除缓存
clern() {
let that = this
// #ifdef APP-PLUS
uni.showModal({
title: '清除缓存',
content: '您确定要清除缓存吗?',
success: function(res) {
if (res.confirm) {
console.log('用户点击确定');
that.clearCache()
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
// #endif
},
// 清理缓存
clearCache() {
let that = this;
uni.showLoading({
mask: true,
title: "清除中..."
})
// #ifdef APP-PLUS
let os = plus.os.name;
if (os == 'Android') {
let main = plus.android.runtimeMainActivity();
let sdRoot = main.getCacheDir();
let files = plus.android.invoke(sdRoot, "listFiles");
let len = files.length;
for (let i = 0; i < len; i++) {
let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
plus.io.resolveLocalFileSystemURL(filePath, function(entry) {
if (entry.isDirectory) {
entry.removeRecursively(function(entry) { //递归删除其下的所有文件及子目录
uni.hideLoading();
uni.showToast({
title: '缓存清理完成',
duration: 2000
});
that.formatSize(); // 重新计算缓存
}, function(e) {
console.log(e.message)
});
} else {
entry.remove();
}
}, function(e) {
console.log('文件路径读取失败')
});
}
} else { // ios
plus.cache.clear(function() {
uni.showToast({
title: '缓存清理完成',
duration: 2000
});
that.formatSize();
});
}
// #endif
}
}
}
</script>