import java.io.File;
import java.io.IOException;
/*
* 文件操作:创建、查看文件相关信息、删除
*/
public class FileMethods {
public void createFile(File file) {
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("文件创建成功");
}
}
// 查看文件相关信息
public void showFileInfo(File file) {
if (file.exists()) {
if (file.isFile()) {
// 是文件
System.out.println("文件名" + file.getName());
System.out.println("文件绝对路径" + file.getAbsolutePath());
System.out.println("文件相对路径" + file.getPath());
System.out.println("文件大小" + file.length());
}
if (file.isDirectory()) {
// 是目录
System.out.println("这是一个目录");
}
}
}
//删除文件
public void deleteFile(File file ){
if (file.exists()) {
System.out.println("文件删除成功");
}
}
public static void main(String[] args) {
FileMethods fm=new FileMethods();
File file=new File("D:\\701\\hello.txt");
fm.createFile(file);
//查看文件信息
fm.showFileInfo(file);

}
}