how can I copy files to the file system of android?

前端 未结 5 836
深忆病人
深忆病人 2021-02-10 06:05

How can I copy files to the file system (place) in android? How can I access it?

5条回答
  •  灰色年华
    2021-02-10 06:18

    copy files from android to local

    adb pull /data/data/com.example.sample ./sample/
    

    copy file to android from local

    adb push ./sample/ /sdcard/sample/
    

提交回复
热议问题