如何在Java中递归地列出文件夹中的所有文件?
Lipis
问问题
128855 次
6 回答
74
不确定要如何表示树?无论如何,这是一个使用递归扫描整个子树的示例。文件和目录被同等对待。请注意,File.listFiles()为非目录返回 null。
public static void main(String[] args) {
Collection<File> all = new ArrayList<File>();
addTree(new File("."), all);
System.out.println(all);
}
static void addTree(File file, Collection<File> all) {
File[] children = file.listFiles();
if (children != null) {
for (File child : children) {
all.add(child);
addTree(child, all);
}
}
}
Java 7 提供了一些改进。例如,DirectoryStream一次提供一个结果 - 调用者不再需要等待所有 I/O 操作完成后再执行操作。这允许增量 GUI 更新、提前取消等。
static void addTree(Path directory, Collection<Path> all)
throws IOException {
try (DirectoryStream<Path> ds = Files.newDirectoryStream(directory)) {
for (Path child : ds) {
all.add(child);
if (Files.isDirectory(child)) {
addTree(child, all);
}
}
}
}
请注意,可怕的 null 返回值已被 IOException 取代。
Java 7 还提供了一个tree walker:
static void addTree(Path directory, final Collection<Path> all)
throws IOException {
Files.walkFileTree(directory, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
throws IOException {
all.add(file);
return FileVisitResult.CONTINUE;
}
});
}
于 2008-10-10T00:45:14.347 回答
23
import java.io.File;
public class Test {
public static void main( String [] args ) {
File actual = new File(".");
for( File f : actual.listFiles()){
System.out.println( f.getName() );
}
}
}
它模糊地显示文件和文件夹。
请参阅 File 类中的方法对它们进行排序或避免目录打印等。
于 2008-10-09T20:38:21.367 回答
6
您还可以使用该FileFilter
界面过滤掉您想要的内容。当您创建实现它的匿名类时最好使用它:
import java.io.File;
import java.io.FileFilter;
public class ListFiles {
public File[] findDirectories(File root) {
return root.listFiles(new FileFilter() {
public boolean accept(File f) {
return f.isDirectory();
}});
}
public File[] findFiles(File root) {
return root.listFiles(new FileFilter() {
public boolean accept(File f) {
return f.isFile();
}});
}
}
于 2008-10-10T15:54:32.597 回答
3
public static void directory(File dir) {
File[] files = dir.listFiles();
for (File file : files) {
System.out.println(file.getAbsolutePath());
if (file.listFiles() != null)
directory(file);
}
}
这dir
是要扫描的目录。例如c:\
于 2013-02-27T11:21:05.983 回答
1
可视化树结构对我来说是最方便的方法:
public static void main(String[] args) throws IOException {
printTree(0, new File("START/FROM/DIR"));
}
static void printTree(int depth, File file) throws IOException {
StringBuilder indent = new StringBuilder();
String name = file.getName();
for (int i = 0; i < depth; i++) {
indent.append(".");
}
//Pretty print for directories
if (file.isDirectory()) {
System.out.println(indent.toString() + "|");
if(isPrintName(name)){
System.out.println(indent.toString() + "*" + file.getName() + "*");
}
}
//Print file name
else if(isPrintName(name)) {
System.out.println(indent.toString() + file.getName());
}
//Recurse children
if (file.isDirectory()) {
File[] files = file.listFiles();
for (int i = 0; i < files.length; i++){
printTree(depth + 4, files[i]);
}
}
}
//Exclude some file names
static boolean isPrintName(String name){
if (name.charAt(0) == '.') {
return false;
}
if (name.contains("svn")) {
return false;
}
//.
//. Some more exclusions
//.
return true;
}
于 2012-05-08T10:06:43.620 回答
0
在 JDK7 中,“更多 NIO 特性”应该具有将访问者模式应用于文件树或仅目录的直接内容的方法 - 无需在迭代之前在潜在的巨大目录中查找所有文件。
于 2008-10-10T08:13:16.987 回答