一切都在问题之中。这是我的代码:
private void createDirectory(File currentDirectory) {
File f = null;
try {
f = new File(currentDirectory.getCanonicalPath() + "/directory"
+ count);
boolean success = f.mkdir();
if (!success) {
Toast.makeText(currentContext,
f.getName() + " could not be created", 15).show();
}
} catch (IOException ioe) {
Toast.makeText(currentContext,
f.getName() + " could not be created", 15).show();
}
count++;
}
我正在 Android 中编写一个小文件管理器,我想添加创建目录的可能性。没有例外,变量success总是返回false。有人可以告诉我我的代码有什么问题吗?
谢谢你的建议!!
[编辑]
顺便说一句,当手机处于开发模式时,应用程序是否对 sdcard 具有写入权限?我正在手机上编程(Acer 液体)