Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm just having trouble with getting my emulator SD card work... I created a new AVD device with a new SD card.

So how to put data onto it? I found the "correct" file to be mountet on Deamon tools, but is currupt or simply not readable...

It would be great if you have any idea :)

share|improve this question

5 Answers

up vote 74 down vote accepted

If you are using Eclipse you can move files to and from the SD Card through the Android Perspective (it is called DDMS in Eclipse). Just select the Emulator in the left part of the screen and then choose the File Explorer tab. Above the list with your files should be two symbols, one with an arrow pointing at a phone, clicking this will allow you to choose a file to move to phone memory.

share|improve this answer
1  
hi, thanks, that seems to work, but how can I add a whole directory with subdirectories? – poeschlorn May 11 '10 at 8:07
1  
you can also run ddms as a standalone application if you have the android SDK installed. It's at $ANDROID_SDK_PATH/tools/ddms – fijiaaron Jul 19 '11 at 18:05
When I ran ddms from the Android SDK Path, The file explorer was not there as a tab. But it was there in the menu. Device -> File Explorer – Ranhiru Cooray Oct 7 '11 at 11:14
is there a way to delete a file/folder from the DDMS perspective? – Felipe Sabino Dec 22 '11 at 20:32
1  
Just to add. It must be running to show in the DDMS Devices list. – Doomsknight May 15 '12 at 8:49
show 1 more comment

Use the adb tool that comes with the SDK.

adb push myDirectory /sdcard/targetDir

If you only specify /sdcard/ (with the trailing slash) as destination, then the CONTENTS of myDirectory will end up in the root of /sdcard.

share|improve this answer
1  
that one was the saver, thank you. – Elijah Saounkine Jan 17 '11 at 17:15
@olafure: Can a file be pushed to the android's sd card, not directory. – Ashwin Mar 14 '12 at 6:09
1  
@user1139023 sure, just append a '/' after the directory name, like: adb push yourfile.ext /sdcard/ that would put yourfile.ext in the root of /sdcard – olafure Mar 14 '12 at 13:28
@olafure: Yeah it is working. Thank you. – Ashwin Mar 14 '12 at 13:36
If you are using Eclipse's File Explorer and getting "read only file system" errors, first run from cmdline: adb remount – sagimann Aug 2 '12 at 14:26

Just adding info to Janusz's answer: you can simply drag any sets of files and folders to File Explorer. No need of using arrow icons.

share|improve this answer
1  
Thank you,this is useful. – hasanghaforian Jul 16 '12 at 4:33
1  
Thanks. This answer should be at the top! – asloob Jan 10 at 11:13

One thing to add to Janusz's answer, when I tried this I got the error

"Failed to push selection: Read-only file system"

to fix this I followed these instructions and it worked fine.

http://www.streamhead.com/android-tutorial-sd-card/

share|improve this answer
if you are running into trouble (sdcard is not mounted) specify the path to the image file in eclipse. – SatelliteSD Jul 25 '12 at 9:04

Follow this to add files in sdcard enter image description here

enter image description here

share|improve this answer

protected by Community Jan 2 at 19:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.