1:创建文件
public class createfile {
public static void main(String[] args) {
File file=new File("D:\\hello.txt"); 在D盘中创建hello文档
try {
file.createNewFile();
System.out.println("文件创建成功");
} catch (IOException e) {
System.out.println("文件创建失败");
throw new RuntimeException(e);
}
}
}
其中,对文件的一些基本操作:
System.out.println(file.getName()); 输出该文件的名字
System.out.printIn(file.delete); 删除该文件
System.out.println(file.getParentFile()); 输出该文件的父文件
System.out.println(file.exists()); 输出文件是否存在
System.out.println(file.isFile()); 输出该文件是否是文件
System.out.println(file.getAbsolutePath());