I would like to know how to efficiently implement filesystem changes in java? Say I got a file in a folder and modify that file. I would like to be notified by java about th
There is an Apache package that does file system monitoring: commons.io.monitor.
Documentation
An example
From what I can tell, you will still need to poll albeit you have control over the frequency.