我想在SD卡中创建文件夹。 我在android终端中使用以下命令
cd sdcard mkdir音乐
mkdir音乐失败,Permission denied。
答案 0 :(得分:12)
尝试以下代码。工作正常。
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
答案 1 :(得分:2)
尝试使用以下链接在sdcard中创建文件夹
在链接下面创建文件夹终端窗口:
http://android-er.blogspot.in/2010/10/how-to-create-sub-folder-in-sd-card-of.html
以编程方式创建文件夹:
http://android-er.blogspot.in/2010/10/how-to-create-sub-folder-in-sd-card.html
谢谢..!
答案 2 :(得分:2)
确保您已为您的AVD添加了SDCard支持。
转到eclipse - windows - avd manager - select avd and edit - hardware - new - SDCard Support
然后尝试命令。
答案 3 :(得分:2)
创建目录时,最好提供完整路径,而不是使用cd
使用Environment.getExternalStorageDirectory()
获取存储根目录。
使用以下命令创建目录:
String filepath=Environment.getExternalStorageDirectory()+"/Music"
File fc=new File(filepath)
if(!fc.exists())
fc.mkdir();