directory-watcher icon indicating copy to clipboard operation
directory-watcher copied to clipboard

A cross-platform Java recursive directory watcher, with a JNA macOS watcher and Scala better-files integration

Results 17 directory-watcher issues
Sort by recently updated
recently updated
newest added

Hello Greg and community, This is maybe more of an informal request rather than a real issue. But maybe you are able to provide some info on this nonetheless. I...

In our project we subscribe for multiple tracked folders, and when any of them is (re)moved, the watcher closes itself, and that can be tracked in a completable future. Example...

It would make sense to separate the public API from other libraries used internally. This way it's clear to users which API they should be using, and we can minimize...

Currently, our macOS watch service fires an `ENTRY_DELETE` event on deletion of the root. The default JDK watchers don't appear to do this. One solution for consistency is to simply...

I think it would be a nice addition to allow watching a directory non-recursively. Currently, when registering a `Path` with the builder, the watcher is either set up with the...

I have an implementation that uses `MacOSXListeningWatchService` directly. There are 2 parts that use it. A runtime and an agent. Does using 2 of these in one process have conflicts....

There should be an option in directory-watcher to follow symlinks and make sure they are handled properly with different configurations.

I was having a look at the Carbon file event API and the current implementation of the OSX's watch service. I realized that the events that Carbon notifies us about...

I just tried out your library, as i found the 'pure' java way using the `WatchService` kind of ugly - nice work to wrap that with this library! When playing...

We have found that sometimes editing files that are exposed on a samba share results in multiple create/delete events (up to six events in about half a second) instead of...