chenssy89/jutils

com.JUtils.file.FileUtils

xiaoyv97 opened this issue · 0 comments

其中的
public static boolean isExist(String filePath,boolean isNew){
File file = new File(filePath);
if(!file.exists() && isNew){
return file.mkdirs(); //新建文件路径
}
return false;
}
if判断逻辑短路了。