Android 10 改变了文件的存储方式不允许应用随意创建文件夹了,要用安卓提供的文件夹,提供的文件夹如下
public static void createPath(String path) {
File file =new File(path);
if (!file.exists()) {
try {
// 获取父文件
File parent = file.getParentFile();
if( !parent.exists() ) {
parent.mkdirs(); //创建所有父文件夹
}
file.createNewFile();
}catch (IOException e) {
e.printStackTrace();
}
}
}
网友评论