1
if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()))            
{           
    System.out.println("​sd card present");         
}

通过使用此代码,我能够找到 sd 卡,但我无法识别它是哪张 sd 卡。那是内置的sd或外部...

http://androidforums.com/samsung-galaxy-s2-t/557831-am-i-saving-sdcard-not.html请参考这个链接一次.....

SGS2 上,Samsung有一个 2 GB 的系统分区,剩余的 14 GB 分区并通过将其挂载点 /sdcard 识别为 sd 卡。除此之外,我们可以在该设备中安装一个外部可移动 sd 卡。那么如何通过编程识别外接可移动sd卡。

4

1 回答 1

1
String sdcardpath = null;
    File[] faFiles = new File("/mnt").listFiles();
    abc: {
        for (File file : faFiles) {
            if (file.isDirectory()) {
                String pathMain = "" + file.getAbsolutePath();
                Log.v("@@@@@@@@@@@@@@@@", "222222222222" + pathMain);
                if (pathMain.indexOf("ext") > 0&&pathMain.startsWith("/mnt/")) {
                    File fp = new File(pathMain);
                    if (fp.canWrite()) {
                        Log.v("@@@@@@@@@@@@@@@@", "33333333333333333"
                                + pathMain);
                        //external sd card is there..
                        sdcardpath = pathMain;
                        break abc;
                    }
                    else{

                    }
                } else {
                    if (pathMain.indexOf("sd") > 0) {
                        File fp = new File(pathMain);
                        if (fp.canWrite()) {
                            Log.v("@@@@@@@@@@@@@@@@", "33333333333333333"+ pathMain);
                            sdcardpath = pathMain;

                               //internal sd card is there..
                        }

                    }
                }
            }
        }
    }
于 2012-07-14T03:34:31.103 回答