Securily delete files

This commit is contained in:
M66B
2023-11-16 11:10:34 +01:00
parent 7eb345cdd6
commit 6bdab773bb
14 changed files with 53 additions and 46 deletions

View File

@@ -260,7 +260,7 @@ public class Fts4DbHelper extends SQLiteOpenHelper {
for (File file : db.getParentFile().listFiles())
if (file.getName().startsWith(DATABASE_NAME)) {
Log.i("FTS delete=" + file);
file.delete();
Helper.secureDelete(file);
}
}
}