Find location of a removable SD card

前端 未结 22 2583
南方客
南方客 2020-11-21 11:32

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

Please, do not be confused with External Storage.

Environment.getExternalStorage

22条回答
  •  无人及你
    2020-11-21 11:47

    Just simply use this:

    String primary_sd = System.getenv("EXTERNAL_STORAGE");
    if(primary_sd != null)
        Log.i("EXTERNAL_STORAGE", primary_sd);
    String secondary_sd = System.getenv("SECONDARY_STORAGE");
    if(secondary_sd != null)
        Log.i("SECONDARY_STORAGE", secondary_sd)
    

提交回复
热议问题