How to delete a file from an SD card. I tried:
File file=new File(filepath); file.delete();
but I could not remove it. when I try to check it in debug mode, file.delete () returns false. I also added permission to my manifest file.
uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
I also tried:
public abstract boolean deleteFile (String name)
out of context andoid. Even this returns false.
source share