1. ホーム
  2. java

[解決済み] WatchServiceで(ディレクトリ全体ではなく)1つのファイルの変更を監視することはできますか?

2023-09-01 19:37:51

質問

ディレクトリではなく、ファイルを登録しようとしたところ java.nio.file.NotDirectoryException が投げられます。ディレクトリ全体ではなく、1つのファイルの変更をリッスンすることは可能でしょうか?

どのように解決するのですか?

ディレクトリ内の必要なファイルのイベントをフィルタリングすればよいのです。

final Path path = FileSystems.getDefault().getPath(System.getProperty("user.home"), "Desktop");
System.out.println(path);
try (final WatchService watchService = FileSystems.getDefault().newWatchService()) {
    final WatchKey watchKey = path.register(watchService, StandardWatchEventKinds.ENTRY_MODIFY);
    while (true) {
        final WatchKey wk = watchService.take();
        for (WatchEvent<?> event : wk.pollEvents()) {
            //we only register "ENTRY_MODIFY" so the context is always a Path.
            final Path changed = (Path) event.context();
            System.out.println(changed);
            if (changed.endsWith("myFile.txt")) {
                System.out.println("My file has changed");
            }
        }
        // reset the key
        boolean valid = wk.reset();
        if (!valid) {
            System.out.println("Key has been unregisterede");
        }
    }
}

ここでは、変更されたファイルが "myFile.txt" であるかどうかをチェックし、もしそうであれば何らかの処理を行います。