Java判斷文件夾是否存在,不存在則新建

Java判斷是否存在文件夾,不存在則新建 File file = new File("/home/log/log.txt"); if (!file.getParentFile().exists()) { file.getParentFile().mkdirs(); } 判斷是否存在文件,不存在則新建 File file = new File("/home/log/log.txt"); if (
相關文章
相關標籤/搜索