如何识别设备中安装的外置SD卡,该设备还有内置SD卡?

时间:2012-07-04 12:29:15

标签: android android-intent android-ndk

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分区并通过制作其挂载点/ SD卡识别为SD卡。除此之外,我们还可以在该设备中安装外部可移动SD卡。然后如何通过编程识别外部可移动SD卡。

1 个答案:

答案 0 :(得分: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..
                        }

                    }
                }
            }
        }
    }