2012-05-20から1日間の記事一覧

WatchService で再帰的にディレクトリ監視で難あり の続き

単なるメモで-す。 import java.nio.file.Path; import java.nio.file.WatchEvent; public interface WatcherCallback { void onCall(Path path, WatchEvent<Path> event); } import static java.nio.file.LinkOption.NOFOLLOW_LINKS; import static java.nio.file</path>…