我们先来看下具体代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import java.io.File;
import java.io.IOException;
public class CreatFile{
public static void main(String[] args) {
File newDir= new File( "D:/test" ); //声明磁盘目录
File newFile = new File(newDir, "test.txt" ); //声明目录文件
boolean newCreatDir=newDir.exists();
boolean newCreatFile=newFile.exists();
//创建目录及文件
if (newCreatDir== false ){
try { //异常监听
newDir.mkdirs(); //创建目录
System.out.println(newDir.getAbsolutePath()+ "目录已创建" );
newFile.createNewFile(); //创建文件
System.out.println(newFile.getAbsolutePath()+ "文件已创建" );
}
catch (IOException e){ //捕捉异常
e.printStackTrace(); //在命令行打印异常信息在程序中出错的位置及原因
}
}
else {
System.out.println(newDir.getAbsolutePath()+ "目录已存在" );
}
if (newCreatFile== true ){
System.out.println(newFile.getAbsolutePath()+ "文件已存在" );
}
}
}
|
说明:
创建目录的方法,mkdirs();或者mkdir(); 区别在于mkdirs()可以多级创建。
创建文件方法,createNewFile();
原文链接:https://www.idaobin.com/archives/752.html