Java - File listFiles() 方法



描述

Java File listFiles() 方法返回一个抽象路径名数组,这些路径名定义了此抽象路径名表示的目录中的文件。

声明

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

public File[] listFiles()

参数

返回值

该方法返回一个路径名数组,这些路径名表示此抽象路径名表示的目录中的文件和目录。

异常

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

示例 1

以下示例演示了 Java File listFiles() 方法的用法。我们创建了一个 File 引用。然后我们使用提供的目录中存在的 test 目录创建一个 File 对象。然后我们使用 listFiles() 方法将 test 目录中存在的文件的列表获取到一个 File 数组中。然后迭代此数组以打印给定目录中可用的文件名。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File[] paths;
            
      try {    
      
         // create new file
         f = new File("F:/test");
                                 
         // array of files and directory
         paths = f.listFiles();
            
         // for each file in the path array
         for(File path:paths) {
         
            // prints filename and directory name
            System.out.println(path.getName());
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

test.pptx
test.txt
Test1.txt

示例 2

以下示例演示了 Java File listFiles() 方法的用法。我们创建了一个 File 引用。然后我们使用“.”创建了一个 File 对象,该对象表示我们运行此程序的当前目录。然后我们使用 listFiles() 方法将当前目录中存在的文件的列表获取到一个 File 数组中。然后迭代此数组以打印给定目录中可用的文件/目录名。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File[] paths;
            
      try {    
      
         // create new file
         f = new File(".");
                                 
         // array of files and directory
         paths = f.listFiles();
            
         // for each file in the path array
         for(File path:paths) {
         
            // prints filename and directory name
            System.out.println(path.getName());
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

.classpath
.project
.settings
app.log
bin
properties.txt
properties.xml
src
test.txt

示例 3

以下示例演示了 Java File listFiles() 方法的用法。我们创建了一个 File 引用。然后我们使用提供的目录中不存在的 test3 目录创建一个 File 对象。然后我们使用 listFiles() 方法将 test 目录中存在的文件的列表获取到一个 File 数组中。然后迭代此数组以打印给定目录中可用的文件名。由于文件夹不存在,数组将为 null,并且我们打印一条消息 -“文件不存在”。

package com.tutorialspoint;
import java.io.File;
public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File[] paths;

      try {    

         // create new file
         f = new File("F:/Test3");
		 
         // array of files and directory
         paths = f.listFiles();

         if(paths != null) {
            // for each name in the path array
            for(File path:paths) {

               // prints filename and directory name
               System.out.println(path.getName());
            }
         }else {
            System.out.println("Files are not present");
         }
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      }
   }
}

输出

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

Files are not present
java_file_class.htm
广告