When I uninstall my app , Can we remove my folder which is created through my app?

What should I do to remove it ?

Use getExternalFilesDir() and/or getExternalCacheDir() for your files on external storage (“sdcard”). Those directories are automatically removed when your app is uninstalled.

Beyond this, nothing else is possible, as you do not get control when your app is removed.

Leave a Comment