How to Copy Raw files into SD Card

前端 未结 2 1747
忘了有多久
忘了有多久 2020-12-11 05:01

I am having problem, while trying to copy audio files from raw folder to SD Card, I have successfully created folder in SD Card, but not able to copy songs in that...

<
2条回答
  •  悲哀的现实
    2020-12-11 05:06

    you forget to add song file name and extension with path on sdcard :

    CopyRAWtoSDCard(mSongs[i], "/sdcard/PriyankaChopra/");  <<<<<
    

    do it as :

     String str_song_name="song_name_"+i+".mp3";
     CopyRAWtoSDCard(mSongs[i], "/sdcard/PriyankaChopra/"+str_song_name);
    

    and also use Environment.getExternalStorageDirectory() for getting sdcard path instead of static path

提交回复
热议问题