Does anyone know how can I get SD card of the phone?
I know that someone will tell me its getExternalStorageDirectory() or Environment.getExterna
I was facing the same problem with my latest device. Then I found that removable SD card can be accessed at /mnt/ext_sdcard/. and it worked for me. I was able to list all the files stored in removable external sd card at this location.
Following is the code: new File("/mnt/ext_sdcard/").listFiles();