在某些Android版本上创建目录

时间:2017-02-15 19:03:44

标签: android android-permissions

我使用Genymotion Marshmallow和我的HTC 10上的Nougat测试了这个代码,它对两者都有效。
现在我在Genymotion上尝试了Android 7.0,它没有创建目录。

知道为什么吗?

File file = new File(Environment
    .getExternalStorageDirectory() + File.separator +
    "SchoolAssist" + File.separator + lesson_name);

boolean isDir = file.exists();
if (!isDir)
    isDir = file.mkdirs();

if (isDir) {
    Intent notes = new Intent(getActivity(), NotesManager.class);
    notes.putExtra("dir", file.getAbsolutePath());
    startActivity(notes);
}
else
    Toast.makeText(getContext(), "Error creating directory", Toast.LENGTH_SHORT).show();

编辑:我的清单包含以下行:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

1 个答案:

答案 0 :(得分:0)

在您的代码中,即使在创建目录时,也会显示Toast。只有在调用代码之前文件已存在时,才会启动活动。

试试这个:

File file = new File(Environment
            .getExternalStorageDirectory() + File.separator +
            "SchoolAssist" + File.separator + lesson_name);

if(!file.exists()) {
    if(file.mkdirs()) {
        startNotesManager();
    } else {
        Toast.makeText(getContext(), "Error creating directory", Toast.LENGTH_SHORT).show();
    }
} else {
    startNotesManager();
}

实现此辅助方法以启动Activity:

private void startNotesManager() {
    Intent notes = new Intent(getActivity(), NotesManager.class);
    notes.putExtra("dir", file.getAbsolutePath());
    startActivity(notes);
}