getExternalStorageDirectory()
return SD card path on my phone. (Huawei Y320 - android 4.2.2).
now, how to get path Pho
External directory can better be thought as media/shared storage. It is a filesystem that can hold a relatively large amount of data and that is shared across all applications (does not enforce permissions). Traditionally this is an SD card, but it may also be implemented as built-in storage in a device that is distinct from the protected internal storage and can be mounted as a filesystem on a computer.
if you User data directory...
Environment.getDataDirectory()
Recommended reading : Android External Storage
Cheers!