下载文件时libcore.io.ErrnoException: open failed: EISDIR (Is a directory)

今天在下载文件的时候报的一个错

原因是我直接在sd目录下创建“/myappname/apk/”

找了一个资料,说是不能一次同时创建两个文件夹,而是要一层一层的创建

还有就是不能把要保存的文件当成空文件夹创建,不然也会报这个错

于是把代码改成下面这样子就ok了

File folder1 = new File(Contants.MAIN_PATH);
if(!folder1.exists()){
folder1.mkdirs();
}
File folder2 = new File(Contants.APK_PATH);
if(!folder2.exists()){
folder2.mkdirs();
}
file = new File(folder2.getAbsolutePath(), name);

你可能感兴趣的:(下载文件时libcore.io.ErrnoException: open failed: EISDIR (Is a directory))