i am new bie in android,
I am developing an application in Android, and i used some ready made libs, now there is browse option, and when i do browse it gives the place of /mnt/sdcard, it is basiacally a file reader, if i use this app in mobile then i can browse my memory card, but there even 500MB card have been configured in emulator, i dont know where to place the files so i can access in my Emulator’s app, i am expecting, there will be a path like C:\Program Files (x86)\Android\android-sdk\SOMEFolder where i can place my files using computer and can access in my emulator. Attached an image of my emulator

i am new bie in android, I am developing an application in Android, and
Share
You can use “adb push” command as
(see http://developer.android.com/guide/developing/tools/adb.html for more details), or simply use “File Explorer” in DDMS perspective then select a folder in sd card folder and select “push a file on to device” to place your files in that folder in your emulator:
And you can use
to access sd-card absolute path.