Move Raw file to SD card in Android

后端 未结 3 1929
醉酒成梦
醉酒成梦 2021-01-28 10:55

I have a method that will copy an Audio file from raw folder to SD card. It takes two inputs

  • ressound: .ogg Audio Raw file id.
  • fName: the fil
3条回答
  •  一生所求
    2021-01-28 11:10

    Use this for path:

    string baseDir = Environment.getExternalStorageDirectory().getAbsolutePath();
    string path = baseDir + File.Separator + "music" + File.Separator + "yourpackagename" + filename;
    

提交回复
热议问题