views:

43

answers:

1

I can see the sd card in the file explorer with d--rwxr-x permission. When i tried adding any file to it it shows Failed to push the items. It is not adding even very small files.

Can you guys suggest how to fix this?

A: 

This is how you push files to the SD Card. First copy the file you want to push to the tools directory [android-sdk-windows]/tools/. Open a command prompt and if you don't have the tools directory in your path you will need to cd [drive]:\android-sdk-windows\tools. Then you just type this:

adb push [filename] /sdcard/[filename]

If you want to put the file into a subdirectory of sdcard you have to create it... you can do that in the adb shell or on the device with a file manager.

androidworkz