我们先来看完整的代码:
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磁盘
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