How to access /storage/emulated/0/

前端 未结 16 2277
被撕碎了的回忆
被撕碎了的回忆 2020-12-13 01:53

I have written a code to record audio and save it to below file location.

private String getFilename() {
    String          


        
16条回答
  •  遥遥无期
    2020-12-13 02:42

    Also you can use Android Debug Bridge (adb) to copy your file from Android device to folder on your PC:

    adb pull /storage/emulated/0/AudioRecorder/1436854479696.mp4 
    

    And you can copy from device whole AudioRecorder folder:

    adb pull /storage/emulated/0/AudioRecorder 
    

提交回复
热议问题