Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows - get warned when a file is created

Tags:

java

windows

I'm not sure if what I'm asking is possible, but I would like to do the following: When a file is created in a certain folder (Windows), my program should respond. I'd like to let Windows call a callback method when a file is created.

Another option is of course just use a loop and constantly check if a new file is in the folder, but I'd like to know it instantly, so a callback method would be much more efficient.

Is this possible? The language is not important, although Java is preferred.

like image 997
Bv202 Avatar asked Aug 20 '12 11:08

Bv202


2 Answers

With Java nio 2 (available in Java 1.7 +), you can "watch" a directory and get notified when that directory changes.

The method proposed in the tutorial linked above uses the WatchService API.

like image 118
assylias Avatar answered Sep 19 '22 14:09

assylias


Commons IO contains a FileAlterationListener wich has a onDirectoryChangemethod. Can be an alternative if Java 1.7 is not available.

like image 37
Ludwig Magnusson Avatar answered Sep 23 '22 14:09

Ludwig Magnusson