vote up 2 vote down star

I need to know when a new file appears in a directory. Obviously, I could poll the file system periodically, but that has all the normal downsides of polling mechanisms.

I know that windows supports file system events, and this project is already constrained to the Windows platform by other requirements.

Does anyone have experience receiving Windows filesystem events inside a JVM? If so what are the best practices, patterns, and/or libraries you have used?

A quick google turns up this library. Does anyone have experience with it (or any other) that they'd be willing to share?

flag

this question has at least 2 duplicated on stack overflow – dfa Jul 21 at 18:58
possible dup of stackoverflow.com/questions/730186/… – notnoop Jul 21 at 18:59
another possible dup: stackoverflow.com/questions/1096404 – dfa Jul 21 at 19:00
Thanks for the dupe links - I didn't find those with an (apparently too brief) search. I've voted to close, especially for 1096404. – Jared Jul 22 at 15:42

3 Answers

vote up 5 vote down check

I think this is one of the key features of Java 7 when it is more available. Example code from Sun's blog on Java 7:

import static java.nio.file.StandardWatchEventKind.*;

Path dir = ...;
try {
    WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
} catch (IOException x) {
    System.err.println(x);
}
link|flag
Nice, I didn't know that. – Draemon Jul 22 at 11:09
vote up 0 vote down

If not using Jdk7 you'll have to use JNI.

link|flag
vote up 1 vote down

Something quite low level and OS-specific like that is going to need native code (as per the link you mention). That library looks relatively small, so in the worst case you could probably fix any problems if your C++ is good enough.

If you can at all avoid it though, I'd suggest not using native code - library or not. What is so demanding about your scenario that you can't have a background thread poll?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.