Java判断文件夹是否存在,不存在就创建

2024-11-15 15:00:06
推荐回答(4个)
回答(1):

方法如下:

public static void judeDirExists(File file)

if (file.exists())             if (file.isDirectory())                

System.out.println("dir exists");          }

else                 System.out.println("the same name file exists, can not create dir");             }41      

else             System.out.println("dir not exists, create it ...");             、

file.mkdir();

Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。Java 技术具有卓越的通用性、高效性、平台移植性和安全性,广泛应用于PC、数据中心、游戏控制台、科学超级计算机、移动电话和互联网,同时拥有全球最大的开发者专业社群。

回答(2):

String path = "E:\\app\\oracle";
if(!new File(path).exists()) {
    new File(path).mkdirs();
  }

请采纳,谢谢

回答(3):

用File类中的.exists()方法判断是否存在
mkdirs创建目录
createNewFile()创建文件
多看看API文档

boolean
exists()

测试此抽象路径名表示的文件或目录是否存在。
createNewFile()

当且仅当不存在具有此抽象路径名指定名称的文件时,不可分地创建一个新的空文件。
boolean
mkdirs()

创建此抽象路径名指定的目录,包括所有必需但不存在的父目录。

回答(4):

File file=new File("c://sdas.txt");
if(!file.isDirectory()){
file.mkdirs();
}