Best way to know sd card Path Android

后端 未结 3 338
灰色年华
灰色年华 2021-01-28 03:25

I need to know in the most of the devices the sd card path. I have some problems for that I actually use:

 Environment.getExternalStorageDirectory();
         


        
3条回答
  •  猫巷女王i
    2021-01-28 04:17

    This is always the best approach:

    Environment.getExternalStorageDirectory();
    

    You could also get the environmental variable which is on all Android devices like this:

    String sdcardPath = System.getenv("EXTERNAL_STORAGE");
    

提交回复
热议问题