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...
<
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