Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to copy all files to my PC using ADB tool?

Tags:

android

adb

This command adb pull to copy files from your phone to my computer. How can I use it to copy all files in the android device into a folder on my computer?

like image 320
Adham Avatar asked Aug 25 '14 05:08

Adham


People also ask

How do I copy files using adb shell?

While adb push command copies a file from local to remote, adb shell cp is used for copying a file from one location of the Android device to another.


Video Answer


1 Answers

give only the directory name it will copy the whole file. The dot at the end is the destination directory of my host pc (. means present working directory)

adb pull "/data/data/com.pkg.test/files/" .

output

 /data/data/com.pkg.test/files/: 20 files pulled. 0 files skipped. 4.9 MB/s (31176666 bytes in 6.062s)
like image 112
Pranoy Sarkar Avatar answered Oct 19 '22 23:10

Pranoy Sarkar