Java - File isDirectory() 方法



描述

Java File isDirectory() 方法检查由该抽象路径名表示的文件是否为目录。

声明

以下是java.io.File.isDirectory() 方法的声明:

public boolean isDirectory()

参数

返回值

当且仅当由该抽象路径名表示的文件是目录时,该方法返回 true;否则,该方法返回 false。

异常

SecurityException - 如果存在安全管理器,并且其 SecurityManager.checkRead(java.lang.String) 方法拒绝读取对该文件的访问权限

示例 1

以下示例演示了 Java File isDirectory() 方法的用法。我们创建了两个 File 引用。然后,我们使用当前目录中不存在的 test.txt 创建一个 File 对象。然后,我们使用 createNewFile() 方法创建该文件。现在,使用 getAbsoluteFile() 方法获取该文件,并使用 isDirectory() 方法检查该文件是否为目录,然后打印结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      
      try {
         // create new files
         f = new File("test.txt");
         
         // create new file in the system
         f.createNewFile();
         
         // create new file object from the absolute path
         f1 = f.getAbsoluteFile();
         
         // prints the file path if is directory
         System.out.print("Is directory: "+ f1.isDirectory());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Is directory: false

示例 2

以下示例演示了 Java File isDirectory() 方法的用法。我们创建了一个 File 引用。然后,我们使用 F:/test.txt 创建一个 File 对象,该文件存在于提供的目录中。现在,使用 getAbsoluteFile() 方法获取该文件,并使用 isDirectory() 方法打印目录状态检查结果。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
      try {
         // create new files
         f = new File("F:/test.txt");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints the file is directory
         System.out.println("Is directory: "+f1.isDirectory());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Is directory: false

示例 3

以下示例演示了 Java File isDirectory() 方法的用法。我们创建了一个 File 引用。然后,我们使用 F:/test 目录创建一个 File 对象,该目录存在于提供的路径中。现在,使用 getAbsoluteFile() 方法获取该目录及其状态,并使用 isDirectory() 方法进行检查。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;      
      try {
         
         // create new files
         f = new File("F:/test");         
    
         // get the file
         File f1 = f.getAbsoluteFile();
         
         // prints the file as directory
         System.out.println("Is directory: "+f1.isDirectory());
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Is directory: true
java_file_class.htm
广告