Thursday, October 22, 2015

Adb push-pull to your android device sdcard

First cd your path, where adb installed, copy and paste here any file to transfer..
then Shift+Right click and open command prompt.

now make sure that device is connected to pc via cable with adb driver installed on pc.

call this command now to check devices:

C:\androidsdk\platform-tools>adb devices
List of devices attached
HT359W917815    recovery

Now push any file to your device:

C:\androidsdk\platform-tools>adb push "ViperOne+9.0.0-fix_3.zip" /sdcard

it will take some time to transfer but you cant see the progress.
it will return following response after finishing transfer.

3622 KB/s (2010320545 bytes in 541.982s).

you just need device path of file to pull to your adb location

adb pull /sdcard/file.apk

No comments:

Post a Comment