Skip to content Skip to sidebar Skip to footer

How Can I Pull A File In /data/data/ From A Rooted Android Device In One Click Using A Windows' .bat File?

I wrote the following .bat file, but it did not work for me. Could anybody help me? adb shell su cd /data/data cp -r com.example.myapp /sdcard exit adb pull /sdcard/com.example.mya

Solution 1:

You can run adb as root

adb root

then you can just do

adb pull /data/data/com.example.myapp/ .

Post a Comment for "How Can I Pull A File In /data/data/ From A Rooted Android Device In One Click Using A Windows' .bat File?"