Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

want to create folder in sdcard on AVD

Tags:

android

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.

like image 911
Ravi Ranjan Avatar asked Apr 27 '12 05:04

Ravi Ranjan


1 Answers

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

enter image description hereenter image description here

like image 159
Chirag Avatar answered Oct 11 '22 21:10

Chirag