Java File listFiles()方法
java.io.File.listFiles() 返回抽象路径名的定义中表示此抽象路径名的目录中的文件的数组。
1 语法
public File[] listFiles()
2 参数
无
3 返回值
该方法返回的路径名用于表示此抽象路径名的目录中的文件和目录的数组。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.list(FilenameFilter filter)方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
File[] paths;
try {
// create new file
f = new File("d:/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();
}
}
}
输出结果为:
d:\test\hello
d:\test\hello.txt
热门文章
优秀文章