Java Java.io.File.listFiles() 方法
-
描述
java.io.File.listFiles()返回抽象路径名数组,该数组定义此抽象路径名表示的目录中的文件。 -
声明
以下是java.io.File.listFiles()方法的声明-public File[] listFiles()
-
参数
不适用 -
返回值
该方法返回此抽象路径名表示的目录中文件和目录的路径名数组。 -
异常
SecurityException如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String)方法拒绝对该文件的读取访问 -
例子
以下示例显示java.io.File.listFiles()方法的用法。package com.jc2182; 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("c:/test"); // returns pathnames for files and directory paths = f.listFiles(); // for each pathname in pathname array for(File path:paths) { // prints file and directory paths System.out.println(path); } } catch(Exception e) { // if any error occurs e.printStackTrace(); } } }
让我们编译并运行以上程序,这将产生以下结果-c:\test\child_test c:\test\child_test.txt c:\test\child_test.xlsx