Skip to content Skip to sidebar Skip to footer

Android File.delete Not Working

Im trying to delete an image file after I saved it to SD card, but the delete function is not working. Any help will be appreciated. Here is my code: // Save image to SD card Stri

Solution 1:

I think you forgot to add below permission in manifest, just check it if not.

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

Post a Comment for "Android File.delete Not Working"