How to find the right file path in sdcard?

4.6k Views Asked by At

This is the previous post.
About mp3 player And the picture below is my A.mp3 path I find in my phone. ` screenshot

  mediaPlayer.setDataSource("/storage/sdcard1/A.mp3") 

  File file =new   File(Environment.getExternalStorageDirectory(),"A.mp3");
  mediaPlayer.setDataSource(file.getPath());

There are two paths above..According the picture,it should be the first one,but it does not work.

I push A.mp3 into the internal storage,and play is ok.

  mediaPlayer.setDataSource("/system/A.mp3");   
3

There are 3 best solutions below

4
On BEST ANSWER

Firstly- Check that the SD card is mounted and readable.

if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED));

or

if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED_READ_ONLY));

From your question here: You are using:

File file =new   File(Environment.getExternalStorageDirectory(),"A.mp3");
mediaPlayer.setDataSource(file.getPath());

and have tried:

mediaPlayer.setDataSource("/storage/sdcard1/A.mp3")

Then try:

Edit: add in Music folder.

mediaPlayer.setDataSource("/sdcard1/Music/A.mp3");

Also: this http://www.bogotobogo.com/Android/android24Media.php#SDCard is an interesting link. So you can explore you files in Android Studio.

5
On

enter image description here

I finally find that the two files got different permission.I don't know what do those "wrdrrwrwrwrw*****" mean.So I need to search it .

0
On
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

This permission was forgotten.Now is ok