android-storage icon indicating copy to clipboard operation
android-storage copied to clipboard

Unable to delete folder

Open AndroidDeveloperMCT opened this issue 8 years ago • 1 comments
trafficstars

My folder path is /storage/emulated/0/com.example.demoapp

but i am unable to delete it using storage.deleteDirectory(path);

Can anyone plzz help me in this ???

AndroidDeveloperMCT avatar Oct 17 '17 12:10 AndroidDeveloperMCT

If I'm not wrong, you should never use hardcoded path to external storage. It may change and it's a good practice to use something like this:

context.getExternalFilesDir()

gowthamgts avatar Oct 24 '18 10:10 gowthamgts