exists()
软件包java.io.File.exists()中提供了此方法。
此方法用于检查给定文件路径中是否存在文件或目录。
此方法的返回类型为boolean,即true或false。如果返回true,则表示文件或目录存在于给定路径中;否则返回false,表示文件在给定路径中不存在。
如果未授予文件写入权限,则此方法可能会引发异常(即Security Exception)。
语法:
boolean exists(){ }
参数:
我们不会在File方法中将任何对象作为参数传递。
返回值:
此方法的返回类型为boolean,即如果给定路径中存在文件或目录,则返回true,否则返回false。
exists()
方法示例import java.io.File; public class ToCheckDirectoryFileExists { public static void main(String[] args) { File path1 = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\myjava.txt"); File path2 = new File("C:\\Users\\computer clinic\\Articles\\myjava1.txt"); //通过使用exists()File的方法将检查 //指定的文件是否存在以及exist()方法 //与File类对象一起使用,因为其File方法 //如果文件存在,则返回Boolean返回true;否则返回false。 boolean file1_exists = path1.exists(); boolean file2_exists = path2.exists(); //通过使用getPath()方法来检索给定 //目录和file1_exists和file2_exists的路径 //当文件存在时返回true,否则返回false。 System.out.println("Given File1 " + path1.getPath() + " exists: " + file1_exists); System.out.println("Given File2 " + path2.getPath() + " is not exists: " + file2_exists); } }
输出结果
D:\Programs>javac ToCheckDirectoryFileExists.java D:\Programs>java ToCheckDirectoryFileExists Given File1 C:\Users\computer clinic\OneDrive\Articles\myjava.txt exists: true Given File2 C:\Users\computer clinic\Articles\myjava1.txt is not exists: false