我正在尝试清除手机上安装的所有应用程序的缓存。
这是我的代码:
public void clearApplicationData() {
File cache = getCacheDir();
File parent1 = new File(cache.getParent());
File parent2 = new File(parent1.getParent());
if(parent2.exists()) {
String[] children = parent2.list();
for(String s : children){
if(!s.equals("lib")){
deleteDir(new File(parent2, s));
Log.d("TAG", "File /data/data/APP_PACKAGE/" + s +" DELETED");
}
}
}
}
public static boolean deleteDir(File dir) {
Log.d("TAG", "Deleting :" + dir.getPath());
if (dir != null && dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
boolean success = deleteDir(new File(dir, children[i]));
Log.d("TAG", "Delete :" + success +" \n");
if (!success) {
return false;
}
}
}
return dir.delete();
}
在清单文件中,我声明了这个权限:
<uses-permission android:name="android.permission.CLEAR_APP_CACHE" />
但我总是将parent2
作为null
。
我可以使用parent1
删除我的应用程序缓存数据。
请提出任何建议。