import java.io.*
public class Demo
{
public static void main(String[] args) throws Exception
{
String p="test.txt"
File f=new File(p)
if(f.isFile())
{
if(f.exists())
{
System.out.println("文件"+p+"存在。")
}
else
{
System.out.println("文件"+p+"不存在。")
}
}
else
{
System.out.println(p+"不是文件。")
}
}
}
用File类中的.exists()方法判断是否存在mkdirs创建目录
createNewFile()创建文件
多看看API文档
boolean
exists()
测试此抽象路径名表示的文件或目录是否存在。
createNewFile()
当且仅当不存在具有此抽象路径名指定名称的文件时,不可分地创建一个新的空文件。
boolean
mkdirs()
创建此抽象路径名指定的目录,包括所有必需但不存在的父目录。
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,如果文件不存在,就新建该文件
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)