android file.mkdir()一直返回false问题

        今天想写本地日志,结果写文件的时候一直失败,报FileNotFound错误,很明显,就是文件创建失败的问题了,debug了一下,发现在创建路径的时候,file.mkdirs()就出问题了(这个方法相对file.mkdir()还多了检测是否存在,偷懒必备),检查了一下,发现权限都没有问题,跑去developer看一下,发现现在不能直接用

Environment.getExternalStorageDirectory();

方法来创建路径或文件了,现在用的是context.getExternalFilesDir()或者context.getCacheDir()

        完整的使用方式如下

String file_path = context.getExternalCacheDir() + File.separator + fileDirectoy;
new File(file_path).mkdirs();//会自动判断路径是否存在如果不存在,创建路径
String fileName = file_path + File.separator + "自定义文件名";
File file = new File(fileName);
if(!file.exists()){
    try{
        file.createNewFile();
    }catch (IOException e){
        Log.e("ALeeObj", e.toString());
    }
}


可以用这个来判断文件路径是否还可用

boolean isPathAvailable = Environment.getExternalStorageState(filePath).equals(Environment.MEDIA_MOUNTED);//返回true表示改路径可读也可写

当然你也可以用getExternalFilesDir方法,在这里不建议用getFilesDir()和getCacheDir()方法,实测了一下文件不知道创建到哪了,暂时没有找到

还有getExternalCacheDir()创建的文件路径在  根目录/Android/data/你的applicationId/cache/

developer getExternalCacheDir方法说明链接: 

https://developer.android.google.cn/reference/kotlin/android/content/Context?hl=en#getExternalCacheDir()

developer Enviroment类说明链接:

https://developer.android.google.cn/reference/kotlin/android/os/Environment.html#getExternalStorageState(java.io.File)

你可能感兴趣的:(Android,创建文件)