I went through the following link which says that the external folders will be deleted automatically during uninstallation of my app.
I am using the following code t
Hey the link says that If you use getExternalCacheDir(), then only folders auto deleted when uninstalling the app. So please correct your self. If you are using getExternalStorageDirectory , then you have to manually delete the folder by programming
to delete a folder you can use below code
String TEMP_FOLDER_PATH = Environment.getExternalStorageDirectory() + "/myAppFolder/";
File f1=new File(TEMP_FOLDER_PATH);
f1.delete();