want to create folder in sdcard on AVD

android

Solution

Try below code.It working fine.

you need to run emulator before run the below commands.
use the adb shell command from the android tools folder.
eg (this was on windows):
cd android-sdk-windows\tools
adb shell
cd /sdcard/
mkdir myfolder

Problem

I want to create folder in sdcard. i am using following command in android terminal cd sdcard mkdir music mkdir failed for music, Permission denied.

Original source