java file exists用法_Java File exists方法

时间:2025-04-02 19:56:43

Java File exists()方法

() 方法测试此抽象路径名定义的文件或目录是否存在。

1 语法

public boolean exists()

2 参数

3 返回值

当且仅当由抽象路径名确定文件是否存在,则该方法返回布尔值true;否则为false。

4 示例

package ;

/**

* 一点教程网:

*/

/**

* ()方法的例子

*/

import ;

public class Demo {

public static void main(String[] args) {

File f = null;

boolean bool = false;

try {

// create new files

f = new File("");

// create new file in the system

();

// tests if file exists

bool = ();

// prints

("File exists: "+bool);

if(bool == true) {

// delete() invoked

();

("delete() invoked");

}

// tests if file exists

bool = ();

// prints

("File exists: "+bool);

} catch(Exception e) {

// if any error occurs

();

}

}

}

输出结果为:

File exists: true

delete() invoked

File exists: false