Пример #1
0
 public static void deleteDbSafe(String filepath) {
   if (!new File(filepath).exists()) {
     return;
   }
   AnyMemoDBOpenHelperManager.forceRelease(filepath);
   new File(filepath).delete();
 }