Java File exists()方法
java.io.File.exists() 方法测试此抽象路径名定义的文件或目录是否存在。
1 语法
public boolean exists()
2 参数
无
3 返回值
当且仅当由抽象路径名确定文件是否存在,则该方法返回布尔值true;否则为false。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.exists()方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
boolean bool = false;
try {
// create new files
f = new File("test.txt");
// create new file in the system
f.createNewFile();
// tests if file exists
bool = f.exists();
// prints
System.out.println("File exists: "+bool);
if(bool == true) {
// delete() invoked
f.delete();
System.out.println("delete() invoked");
}
// tests if file exists
bool = f.exists();
// prints
System.out.print("File exists: "+bool);
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
File exists: true
delete() invoked
File exists: false