我想遍历网络UNC路径中的文件,以便可以对它们进行操作,可以吗?

我正在尝试下面的方式(请参见下面的代码),并且没有列出文件。

但是,使用Windows资源管理器,我可以访问该文件夹,并且可以看到,修改甚至删除它们。

// created with this command: mklink /D C:\Users\user\Desktop\repo \\serverIp\public\repo
File repo = new File("C:\\Users\\user\\Desktop\\repo"); // symlink

final Path dir = FileSystems.getDefault().getPath(repo.getCanonicalPath());

Files.walkFileTree(dir, new SimpleFileVisitor<Path>() {
    @Override
    public FileVisitResult preVisitDirectory(Path newDir, BasicFileAttributes attrs) throws IOException {
        System.out.println(newDir.toAbsolutePath());
        return FileVisitResult.CONTINUE;
    }

    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
        System.out.println(file.toAbsolutePath());
        return FileVisitResult.CONTINUE;
    }
});

我是否正确创建了符号链接?

最佳答案

我认为您需要使用FOLLOW_LINKS选项。

import static java.nio.file.FileVisitResult.*;
Files.walkFileTree(dir, EnumSet.of(FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<Path>() { ... ))

10-08 01:43