December 2018
Beginner to intermediate
328 pages
8h 29m
English
You can use the adb pull command to pull the files present on the Android device to the local workstation. The following is the syntax for using this command:
adb pull <remote> <local>
<remote> refers to the path of the file on the Android device and <local> refers to the location on the local workstation where the file needs to be stored. For instance, the following command-line output shows a Sample.png file being pulled from the Android device to a temp folder on the computer:
adb.exe pull /sdcard/Pictures/MyFolder/Sample.png C:\temp[100%] /sdcard/Pictures/MyFolder/Sample.png
However, on a normal Android phone, you will not be able to download all of the files using the adb pull command because of inherent ...
Read now
Unlock full access