I am developing an android application and for creating an directory on sdcard I have used the method
File myMedia = new File(Environment.getExternalStorageDirectory(),"MySaveCellData");
But this is creating the directory MYSaveCellData in to the internal memory. However, this phone has a an internal memory of 8 GB and has a 16 GB external card.
In normal phones its creating directory on external disk.
Let me know the solution.
I am finding a way to get a list of all external drive installed on a android phone.
http://stackoverflow.com/questions/7450650/how-to-list-additional-external-storage-folders-mount-points/15131810#15131810 – boiledwater Feb 28 '13 at 09:26