In the Command Prompt type the following:
- Code: Select all
mksdcard -l test 10M c:androidtest1.img
Now start the Emulator and load the SDcard from the Command Prompt by typing:
- Code: Select all
emulator -sdcard c:test1.img
Once the Emulator is started, open another Command Prompt instance and try copying a file to SDcard by typing:
- Code: Select all
adb push e:nicepicture.png sdcard/nicepicture.png
Later you can retrieve the same file from SDcard to your system by typing:
- Code: Select all
adb pull sdcard/nicepicture.png d:
Verify if the file has been copied in your filesystem (in d:)
SDK Version compatible: 0.9, 1.0 (maybe prior versions too)
Credit: Rahul (Thanks!)


