Best way to know sd card Path Android

后端 未结 3 337
灰色年华
灰色年华 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:22

    I think this is best one ...

     Cursor cursor = getContentResolver().query(_uri, new String[] { ndroid.provider.MediaStore.Images.ImageColumns.DATA }, null, null, null);
                          cursor.moveToFirst();
    

提交回复
热议问题