Java 8:从文件夹/子文件夹中获取文件

Nuñ*_*ada 8 java collections functional-programming stream java-8

我在SpringBoot应用程序的resources文件夹中有这个文件夹.

resources/files/a.txt
resources/files/b/b1.txt
resources/files/b/b2.txt
resources/files/c/c1.txt
resources/files/c/c2.txt
Run Code Online (Sandbox Code Playgroud)

我想得到所有的txt文件,所以这是我的代码:

   ClassLoader classLoader = this.getClass().getClassLoader();
   Path configFilePath = Paths.get(classLoader.getResource("files").toURI());   

   List<Path> atrackFileNames = Files.list(configFilePath)
                .filter(s -> s.toString().endsWith(".txt"))
                .map(Path::getFileName)
                .sorted()
                .collect(toList());
Run Code Online (Sandbox Code Playgroud)

但我只得到文件a.txt

Eug*_*ene 22

    Path configFilePath = FileSystems.getDefault()
            .getPath("C:\\Users\\sharmaat\\Desktop\\issue\\stores");

    List<Path> fileWithName = Files.walk(configFilePath)
            .filter(s -> s.toString().endsWith(".java"))
            .map(Path::getFileName).sorted().collect(Collectors.toList());

    for (Path name : fileWithName) {
        // printing the name of file in every sub folder
        System.out.println(name);
    }
Run Code Online (Sandbox Code Playgroud)


Dum*_*mbo 5

Files.list(path)方法仅返回目录中的文件流。而且方法列表不是递归的。
相反,您应该使用Files.walk(path)。此方法遍历植根于给定起始目录的所有文件树。
有关它的更多信息:https :
//docs.oracle.com/javase/8/docs/api/java/nio/file/Files.html#walk-java.nio.file.Path-java.nio.file.FileVisitOption。 ..-