18

我正在尝试查看特定文件夹的更改,然后如果其中发生任何添加/编辑/删除,我需要获取该文件夹及其子文件夹中所有文件的更改类型。我正在使用WatchService它,但它只监视一个路径,它不处理子文件夹。

这是我的方法:

try {
        WatchService watchService = pathToWatch.getFileSystem().newWatchService();
        pathToWatch.register(watchService, StandardWatchEventKinds.ENTRY_CREATE,
                StandardWatchEventKinds.ENTRY_MODIFY, StandardWatchEventKinds.ENTRY_DELETE);

        // loop forever to watch directory
        while (true) {
            WatchKey watchKey;
            watchKey = watchService.take(); // This call is blocking until events are present

            // Create the list of path files
            ArrayList<String> filesLog = new ArrayList<String>();
            if(pathToWatch.toFile().exists()) {
                File fList[] = pathToWatch.toFile().listFiles();
                for (int i = 0; i < fList.length; i++) { 
                    filesLog.add(fList[i].getName());
                }
            }

            // Poll for file system events on the WatchKey
            for (final WatchEvent<?> event : watchKey.pollEvents()) {
                printEvent(event);
            }

            // Save the log
            saveLog(filesLog);

            if(!watchKey.reset()) {
                System.out.println("Path deleted");
                watchKey.cancel();
                watchService.close();
                break;
            }
        }

    } catch (InterruptedException ex) {
        System.out.println("Directory Watcher Thread interrupted");
        return;
    } catch (IOException ex) {
        ex.printStackTrace();  // Loggin framework
        return;
    }

就像我之前说的,我只获取所选路径中文件的日志,并且我想查看所有文件夹和子文件夹文件,例如:

示例 1:

FileA (Created)
FileB
FileC
FolderA FileE
FolderA FolderB FileF

示例 2:

FileA
FileB (Modified)
FileC
FolderA FileE
FolderA FolderB FileF

有没有更好的解决方案?

4

3 回答 3

24

AWatchService只看Path你注册的 s。它不会递归地通过这些路径。

/Root作为注册路径给出

/Root
    /Folder1
    /Folder2
        /Folder3

如果 有变化Folder3,它不会捕捉到它。

您可以自己递归地注册目录路径

private void registerRecursive(final Path root) throws IOException {
    // register all subfolders
    Files.walkFileTree(root, new SimpleFileVisitor<Path>() {
        @Override
        public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
            dir.register(watchService, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
            return FileVisitResult.CONTINUE;
        }
    });
}

现在WatchService将通知所有子文件夹中的所有更改Path root,即。你通过的Path论点。

于 2013-09-09T15:03:39.017 回答
13

正如 Sotirios 所指出的那样,递归注册将起作用。这有效地注册了当前存在的每个目录/子目录。

您也可以导入并使用 *com.sun.nio.file.ExtendedWatchEventModifier.FILE_TREE*,如下所示:

dir.register(watcher, standardEventsArray, ExtendedWatchEventModifier.FILE_TREE);

这将监视整个子树的更改和添加的目录和子目录的帐户。

否则,您将不得不监视任何新目录/子目录并注册它们。删除部分目录层次结构也可能存在问题,因为每个注册目录都有一个句柄监视它,因此在删除部分结构时需要首先删除(最低)子目录。

于 2013-10-02T16:21:57.570 回答
5

我已经使用 Java 8 流和 lambdas 实现了类似的东西。

递归文件夹发现实现为Consumer @FunctionalInterface:

    final Map<WatchKey, Path> keys = new HashMap<>();

    Consumer<Path> register = p -> {
        if (!p.toFile().exists() || !p.toFile().isDirectory()) {
            throw new RuntimeException("folder " + p + " does not exist or is not a directory");
        }
        try {
            Files.walkFileTree(p, new SimpleFileVisitor<Path>() {
                @Override
                public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
                    LOG.info("registering " + dir + " in watcher service");
                    WatchKey watchKey = dir.register(watcher, new WatchEvent.Kind[]{ENTRY_CREATE}, SensitivityWatchEventModifier.HIGH);
                    keys.put(watchKey, dir);
                    return FileVisitResult.CONTINUE;
                }
            });
        } catch (IOException e) {
            throw new RuntimeException("Error registering path " + p);
        }
    };

每次新建文件夹时都会调用上述代码,以便后期动态添加文件夹。完整的解决方案和更多细节在这里

于 2016-06-06T13:03:47.333 回答