copy db file with adb pull results in 'permission denied' error

前端 未结 15 784
执笔经年
执笔经年 2020-12-13 17:13

I just rooted my Nexus 5 using this method: http://www.phonearena.com/news/How-to-root-Google-Nexus-5_id49014

I also enabled USB debugging in the developer options.<

15条回答
  •  一生所求
    2020-12-13 17:45

    1. Create a folder in sdcard :
    adb shell "su 0 mkdir /sdcard/com.test"
    
    1. Move your files to the new folder :
    adb shell "su 0 mv -F /data/data/com.test/files/ /sdcard/com.test/"
    
    1. You can now use adb pull :
    adb pull /sdcard/com.test
    

提交回复
热议问题