Java 获取至少包含一个文件的文件夹列表

Java to get a list of folders which contains also at least one file

有一个目录结构,我需要从中列出所有文件夹,其中至少包含一个文件。因此,当文件夹仅包含子文件夹时,不应列出。 我尝试为此使用以下代码,但输出中存在空文件夹。

Files.walk(Paths.get("C://testfolderstruct")).filter(Files::isDirectory).filter(Files::exists).forEach(System.out::println);

文件夹结构:

C:.
└───T1
    ├───T2
    └───T3
            test.txt

预期输出:

C:\_privat\teszt\T1\T3

Files.exists() 只检查给定路径是否存在,但不检查它是否包含文件。您必须获得路径中的文件列表。尝试这样的事情:

public static void main(String[] args) throws IOException {
    Files.walk(Paths.get("C://testfolderstruct"))
        .filter(Files::isDirectory)
        .filter(p -> checkIfEmpty(p))
        .forEach(System.out::println);
}

private static boolean checkIfEmpty(Path directory) {
    try {
        return Files.list(directory)
                .filter(p -> !Files.isDirectory(p))
                .findAny()
                .isPresent();
    }
    catch (IOException e) {
        return false;
    }
}

对于递归 空目录:(a/ with only b/c/d/)

    Path path = Paths.get("C:\...");

    List<Path> paths = new ArrayList<>();
    Files.walkFileTree(path, new SimpleFileVisitor<>() {
        Stack<Integer> filledStack = new Stack<>();

        @Override
        public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs)
                throws IOException {
            filledStack.push(paths.size());
            return super.preVisitDirectory(dir, attrs);
        }

        @Override
        public FileVisitResult postVisitDirectory(Path dir, IOException exc)
                throws IOException {
            int atDir = filledStack.pop();
            if (paths.size() > atDir) {
                paths.add(atDir, dir); // Insert in front.
            }
            return super.postVisitDirectory(dir, exc);
        }

        @Override
        public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
                throws IOException {
            paths.add(file);
            return super.visitFile(file, attrs);
        }
    });
    paths.forEach(System.out::println);

简单收集常规文件路径,在postVisitDirectory上检查是否添加目录。

还有这个使用NIO files.find:

try (Stream<Path> stream = Files.find(dir, Integer.MAX_VALUE, (path, attr) -> !attr.isDirectory())) {
        stream.map(Path::getParent).distinct().forEach(System.out::println);
}