How can I get the external SD card path for Android 4.0+?

前端 未结 26 3146
清歌不尽
清歌不尽 2020-11-22 04:48

Samsung Galaxy S3 has an external SD card slot, which is mounted to /mnt/extSdCard.

How can I get this path by something like Environment.getExter

26条回答
  •  自闭症患者
    2020-11-22 05:43

    String secStore = System.getenv("SECONDARY_STORAGE");
    
    File externalsdpath = new File(secStore);
    

    This will get the path of external sd secondary storage.

提交回复
热议问题