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

时间:2022-09-26 20:05:45

我们先来看完整的代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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项目夹的路径

原文链接:https://www.idaobin.com/archives/748.html