代码实例Java IO判断目录和文件是否存在

我们先来看完整的代码:

import java.io.File;

public class JudgeFile {

public static void main(String[] args) {

File dir = new File("D:/"); //声明D磁盘

File file = new File(dir,"test"); //声明D磁盘根目录下名为test的文件

boolean d=dir.exists();

boolean f=file.exists();

if(d==true){

System.out.println(dir.getAbsolutePath()+"目录存在");

}

else{

System.out.println(dir.getAbsolutePath()+"目录不存在");

}

if(f==true){

System.out.println(file.getAbsolutePath()+"文件存在");

}

else{

System.out.println(file.getAbsolutePath()+"文件不存在");

}

}

}

说明:

exists() 方法来检测文件或目录是否存在

getAbsolutePath()方法打印磁盘路径

如果不声明目录,例如File file = new File(“test”); 默认路径为java项目夹的路径

以上是 代码实例Java IO判断目录和文件是否存在 的全部内容, 来源链接: utcz.com/z/324450.html

回到顶部