参见英文答案 >
Recursively list all files within a directory using nio.file.DirectoryStream;8个
我在SpringBoot应用程序的resources文件夹中有这个文件夹.
我在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
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());
但我只得到文件a.txt
解决方法
Files.walk(configFilePath) .filter(s -> s.toString().endsWith(".txt")) .map(Path::getFileName) .sorted() .collect(toList());