want to create folder in sdcard on AVD

前端 未结 4 1132
刺人心
刺人心 2021-01-05 01:23

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.

4条回答
  •  -上瘾入骨i
    2021-01-05 02:05

    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 here enter image description here

提交回复
热议问题