Hello,
In this tutorial I will show you how to use ADB pull and ADB push commands.
If you have already setup environment Path variable than simple execute CMD, otherwise go to folder where ADB command is and execute Command Prompt from there.
For me ADB command is in folder
C:\Users\muhammad.taqi\AppData\Local\Android\Sdk\platform-tools
To view connected devices type
ADB devices
How to Push Files into your Android Device
adb push e:\myfile.txt /storage/emulated/0/myfolder/myfile.txt
How to Pull Files into your Android Device
adb pull /storage/emulated/0/myfolder/myfile.txt
This will copy file from you android device to the folder where ADB command is present.
I hope it was informative for you and I would like to thank you for reading.
In this tutorial I will show you how to use ADB pull and ADB push commands.
If you have already setup environment Path variable than simple execute CMD, otherwise go to folder where ADB command is and execute Command Prompt from there.
For me ADB command is in folder
C:\Users\muhammad.taqi\AppData\Local\Android\Sdk\platform-tools
To view connected devices type
ADB devices
How to Push Files into your Android Device
adb push e:\myfile.txt /storage/emulated/0/myfolder/myfile.txt
How to Pull Files into your Android Device
adb pull /storage/emulated/0/myfolder/myfile.txt
This will copy file from you android device to the folder where ADB command is present.
I hope it was informative for you and I would like to thank you for reading.