Skip to content

Instantly share code, notes, and snippets.

@ldclakmal
Last active January 8, 2017 12:28
Show Gist options
  • Select an option

  • Save ldclakmal/7a2df57a1670d588f74588bdd0e8cb17 to your computer and use it in GitHub Desktop.

Select an option

Save ldclakmal/7a2df57a1670d588f74588bdd0e8cb17 to your computer and use it in GitHub Desktop.
Create a WatchService
Path dir = Paths.get("/tmp");
WatchService watcher = FileSystems.getDefault().newWatchService();
WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment