I have used the Android internal storage to save a file for my application (using openFileOutput) but I would like to delete that file, is it possible and how?
openFileOutput
File dir = getFilesDir(); File file = new File(dir, "my_filename"); boolean deleted = file.delete();
1.4m articles
1.4m replys
5 comments
57.0k users