我正在开发一个应用程序,我需要清除缓存。但是每当我删除缓存时,我的用户数据(外部数据库文件)也会被删除。我不想删除它。
请帮助我,提前谢谢
这是我的代码:
public void clearApplicationData()
{
File cache = getCacheDir();
File appDir = new File(cache.getParent());
if (appDir != null && appDir.isDirectory()) {
deleteDir(appDir);
}
}
public static boolean deleteDir(File dir)
{
if (dir != null && dir.isDirectory()) {
String[] children = dir.list();
for (int i = 0; i < children.length; i++) {
if(!dir.getAbsolutePath().contains("/data/data/com.example.sounds_english/databases/PhonemeDatabase.db"))
{
boolean success = deleteDir(new File(dir, children[i]));
if (!success) {
return false;
}
}
}
}
return dir.delete();
}
答案 0 :(得分:0)
您说您只想删除缓存,但是您要获取缓存目录,备份到应用程序目录,删除该目录中的所有文件夹,然后删除该目录。