如何判断指定的文件夹里的一个文件是否存在

如何判断指定的文件夹里的一个文件是否存在,第1张

1.File testFile = new File(testFilePath)

if(!testFile .exists()){

testFile.mkdirs()

System.out.println("测试文件夹不存在")

}

2.File testFile = new File(testFilePath)

if(!testFile .exists()){

testFile.createNewFile()

System.out.println("测试文件不存在")

}

java中File类自带一个检测方法exists可以判断文件或文件夹是否存在,一般与mkdirs方法(该方法相较于mkdir可以创建包括父级路径,推荐使用该方法)或者createNewFile方法合作使用。

1,如果路径不存在,就创建该路径

2,如果文件不存在,就新建该文件

1.File testFile = new File(testFilePath)

if(!testFile .exists()){

testFile.mkdirs()

System.out.println("测试文件夹不存在")

}

2.File testFile = new File(testFilePath)

if(!testFile .exists()){

testFile.createNewFile()

System.out.println("测试文件不存在")

}

java中File类自带一个检测方法exists可以判断文件或文件夹是否存在,一般与mkdirs方法(该方法相较于mkdir可以创建包括父级路径,推荐使用该方法)或者createNewFile方法合作使用。

1,如果路径不存在,就创建该路径

2,如果文件不存在,就新建该文件


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11686319.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存