Can anyone explain me which is the external-storage in android? I thought that we mean the sd card but after i unmount the card i can still store images in the external storage! The code that i am using is the below:
File path = new File(
Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES)
+ File.separator + album);
According to the docs:
So, you cannot be guaranteed that “external storage” means “on the sd card”.