Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an universal way to find the location of an external SD card?

Please, do not be confused with External Storage. Environment.getExternalStorageState() returns path to internal SD mount point like "/mnt/sdcard". But the question is about external SD. How to get a path like "/mnt/sdcard/external_sd" (it may differ from device to device)?

I guess I will end with filtering of mount command by filesystem name. But I'm not sure this way is robust enough.

share|improve this question

5 Answers

up vote 42 down vote accepted

Environment.getExternalStorageState() returns path to internal SD mount point like "/mnt/sdcard"

No, Environment.getExternalStorageDirectory() refers to whatever the device manufacturer considered to be "external storage". On some devices, this is removable media, like an SD card. On some devices, this is a portion of on-device flash. Here, "external storage" means "the stuff accessible via USB Mass Storage mode when mounted on a host machine", at least for Android 1.x and 2.x.

But the question is about external SD. How to get a path like "/mnt/sdcard/external_sd" (it may differ from device to device)?

Android has no concept of "external SD", aside from external storage, as described above.

If a device manufacturer has elected to have external storage be on-board flash and also has an SD card, you will need to contact that manufacturer to determine whether or not you can use the SD card (not guaranteed) and what the rules are for using it, such as what path to use for it.

share|improve this answer
Thank you for the explanation. – borisstr Apr 17 '11 at 20:16
1  
And this problem is becoming more of an issue as HC and ICS devices come out that point "ExternalStorageDirectory" and everything else like it to internal physical storage. Top it off that most users have absolutely no clue how to locate where their sdcard is in the filesystem. – Tony Maro Jan 8 '12 at 18:04
38  
So your answer is basically 'contact the manufacturer'. Not useful. – dragonroot Mar 15 '12 at 2:05
The last part of the answer is not quite accurate -- it is indeed possible to detect the SD card path by following the answers below this (scanning /proc/mounts, /system/etc/vold.fstab, etc...). – Learn OpenGL ES Feb 17 at 15:29
1  
@Kevin: "I think it's a little harsh and premature to call all of these developers fools" -- you would have said the same thing about my warning developers against using undocumented content:// values, validated with the Gmail lockdown. Or my advice to not try back-door ways to access LogCat on the device, validated when 4.2 locked that down. And so on. Multiple external storage locations is an undeniable gap in the SDK, which hopefully will get fixed. In the meantime, I will continue to counsel against intentionally writing unreliable apps. You, of course, are welcome to do as you wish. – CommonsWare Feb 21 at 23:13
show 3 more comments

I had an application which used a ListPreference where the user was required to select the location of where they wanted to save something. In that app, I scanned /proc/mounts and /system/etc/vold.fstab for sdcard mount points. I stored the mount points from each file into two separate arraylists.

Then, I compared one list with the other and discarded items that were not in both lists. That gave me a list of root paths to each sdcard.

From there, I tested the paths with File.exists(), File.isDirectory(), and File.canWrite(). If any of those tests were false, I discarded that path from the list.

Whatever was left in the list, I converted to a String[] array so it could be used by the ListPreference values attribute.

You can view the code here: http://sapienmobile.com/?p=204

share|improve this answer
FYI, this doesn't work on Galaxy S3, 2 SD cards, only one listed in vold.conf – 3c71 Jul 20 '12 at 21:51
@3c71 - Can you send me the vold and mounts files for Galaxy S3? I'll tweak the code to cover it. – Baron Aug 16 '12 at 15:48
Looks great. Thanks. – philipp Oct 27 '12 at 22:51
This helped a lot, thank you – MJ93 Jan 7 at 17:11
Galaxy S, all paths found were not writable, weird. There were two storage found, default /mnt/sdcard and /storage/sdcard0, both failed to test – fifth Apr 2 at 6:59
show 2 more comments

It is possible to find where any additional SD cards are mounted by reading /proc/mounts (standard Linux file) and cross-checking against vold data (/system/etc/vold.conf). And note, that the location returned by Environment.getExternalStorageDirectory() may not appear in vold configuration (in some devices it's internal storage that cannot be unmounted), but still has to be included in the list. However we didn't find a good way to describe them to the user.

share|improve this answer
Imo, use of mount is more compatible than reading /proc filesystem. The problem is that SD card is not necessary formatted as FAT. Also, card mount point may vary from ROM to ROM. Also, there could be several others VFAT partitions... – borisstr Nov 17 '11 at 20:15
1  
@borisstr: Hm, actually Android uses vold, so looking at it's config as well is appropriate. – Jan Hudec Nov 21 '11 at 6:55
Thank you for the idea. – borisstr Nov 22 '11 at 19:52
The code file I shared from my post above includes a method to describe the discovered root paths to the user. Look at the setProperties() method. – Baron Dec 20 '12 at 17:46

I came up with the following solution based on some answers found here.

CODE:

import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;

import android.os.Environment;
import android.util.Log;

public class ExternalStorage {

    public static final String SD_CARD = "sdCard";
    public static final String EXTERNAL_SD_CARD = "externalSdCard";

    /**
     * @return True if the external storage is available. False otherwise.
     */
    public static boolean isAvailable() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state) || Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
            return true;
        }
        return false;
    }

    public static String getSdCardPath() {
        return Environment.getExternalStorageDirectory().getPath() + "/";
    }

    /**
     * @return True if the external storage is writable. False otherwise.
     */
    public static boolean isWritable() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            return true;
        }
        return false;

    }

    /**
     * @return A map of all storage locations available
     */
    public static Map<String, File> getAllStorageLocations() {
        Map<String, File> map = new HashMap<String, File>(10);

        List<String> mMounts = new ArrayList<String>(10);
        List<String> mVold = new ArrayList<String>(10);
        mMounts.add("/mnt/sdcard");
        mVold.add("/mnt/sdcard");

        try {
            File mountFile = new File("/proc/mounts");
            if(mountFile.exists()){
                Scanner scanner = new Scanner(mountFile);
                while (scanner.hasNext()) {
                    String line = scanner.nextLine();
                    if (line.startsWith("/dev/block/vold/")) {
                        String[] lineElements = line.split(" ");
                        String element = lineElements[1];

                        // don't add the default mount path
                        // it's already in the list.
                        if (!element.equals("/mnt/sdcard"))
                            mMounts.add(element);
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        try {
            File voldFile = new File("/system/etc/vold.fstab");
            if(voldFile.exists()){
                Scanner scanner = new Scanner(voldFile);
                while (scanner.hasNext()) {
                    String line = scanner.nextLine();
                    if (line.startsWith("dev_mount")) {
                        String[] lineElements = line.split(" ");
                        String element = lineElements[2];

                        if (element.contains(":"))
                            element = element.substring(0, element.indexOf(":"));
                        if (!element.equals("/mnt/sdcard"))
                            mVold.add(element);
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }


        for (int i = 0; i < mMounts.size(); i++) {
            String mount = mMounts.get(i);
            if (!mVold.contains(mount))
                mMounts.remove(i--);
        }
        mVold.clear();

        List<String> mountHash = new ArrayList<String>(10);

        for(String mount : mMounts){
            File root = new File(mount);
            if (root.exists() && root.isDirectory() && root.canWrite()) {
                File[] list = root.listFiles();
                String hash = "[";
                if(list!=null){
                    for(File f : list){
                        hash += f.getName().hashCode()+":"+f.length()+", ";
                    }
                }
                hash += "]";
                if(!mountHash.contains(hash)){
                    String key = SD_CARD + "_" + map.size();
                    if (map.size() == 0) {
                        key = SD_CARD;
                    } else if (map.size() == 1) {
                        key = EXTERNAL_SD_CARD;
                    }
                    mountHash.add(hash);
                    map.put(key, root);
                }
            }
        }

        mMounts.clear();

        if(map.isEmpty()){
                 map.put(SD_CARD, Environment.getExternalStorageDirectory());
        }
        return map;
    }
}

USAGE:

Map<String, File> externalLocations = ExternalStorage.getAllStorageLocations();
File sdCard = externalLocations.get(ExternalStorage.SD_CARD);
File externalSdCard = externalLocations.get(ExternalStorage.EXTERNAL_SD_CARD);
share|improve this answer
tested with nexus 4, nexus s, galaxy s2, galaxy s3, htc desire =) – Richard Mar 25 at 10:44
Hi again, Richard - believe it or not, I have to ask: did you actually try writing out and reading back in a file this way, not just get the dirs? Recall our old "/sdcard0" issue ? I tried this code and it failed on an S3 when I tried to read back in the file that it did write. ... this is very bizarre ... and painful :)) – Howard Pautz May 8 at 23:42

Here is the way I use to find the external card. Use mount cmd return then parse the vfat part.

String s = "";
try {
Process process = new ProcessBuilder().command("mount")
        .redirectErrorStream(true).start();

process.waitFor();

InputStream is = process.getInputStream();
byte[] buffer = new byte[1024];
while (is.read(buffer) != -1) {
    s = s + new String(buffer);
}
is.close();
} catch (Exception e) {
e.printStackTrace();
}

//用行分隔mount列表
String[] lines = s.split("\n");
for(int i=0; i<lines.length; i++) {
//如果行内有挂载路径且为vfat类型,说明可能是内置或者外置sd的挂载点
if(-1 != lines[i].indexOf(path[0]) && -1 != lines[i].indexOf("vfat")) {
    //再用空格分隔
    String[] blocks = lines[i].split("\\s");
    for(int j=0; j<blocks.length; j++) {
        //判断是否是挂载为vfat类型
        if(-1 != blocks[j].indexOf(path[0])) {
            //Test if it is the external sd card.
        }
    }
}
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.