Delete file from internal storage

The getFilesDir() somehow didn’t work.
Using a method, which returns the entire path and filename gave the desired result. Here is the code:

File file = new File(inputHandle.getImgPath(id));
boolean deleted = file.delete();

Leave a Comment