Skip to content

Instantly share code, notes, and snippets.

@sergeich
Created April 12, 2012 12:17
Show Gist options
  • Save sergeich/2366872 to your computer and use it in GitHub Desktop.
Save sergeich/2366872 to your computer and use it in GitHub Desktop.
Clear application data
public void clearApplicationData() {
File cache = getCacheDir();
File appDir = new File(cache.getParent());
if (appDir.exists()) {
String[] children = appDir.list();
for (String s : children) {
if (!s.equals("lib")) {
deleteDir(new File(appDir, s));
}
}
}
}
public static boolean deleteDir(File dir) {
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]));
if (!success) {
return false;
}
}
}
return dir.delete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment