7

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?

Suncatcher
  • 10,355
  • 10
  • 52
  • 90
Adham
  • 63,550
  • 98
  • 229
  • 344

1 Answers1

8

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)
Pranoy Sarkar
  • 1,965
  • 14
  • 31