java 当文件夹不存在时,自动创建文件夹

时间:2025-04-01 10:38:48
public static void main(String[] args) { // 可以是任意格式的文件 String pathName = "D:\\img\\immm\\"; // windows //String pathName = "D:/img/immm/"; //window //String pathName = "/img/immm/"; //linux createFile(new File(pathName)); //当然也可以修改方法,只创建文件夹或者入参时,只有文件夹路径,不带文件名 } /** * 判断文件是否存在,不存在就创建 * @param file */ public static void createFile(File file) { if (()) { ("File exists"); } else { ("File not exists, create it ..."); //getParentFile() 获取上级目录(包含文件名时无法直接创建目录的) if (!().exists()) { ("not exists"); //创建上级目录 ().mkdirs(); } try { //在上级目录里创建文件 (); } catch (IOException e) { (); } } }