I want to monitor changes with selected directories on my system through java. I have bit idea about watchservice in java 7. But watchservice only returns directory name to which change event (MODIFY, DELETE) occurs. On the other side, I want all information about change like user who made changes, time at which change takes place etc.
It is something like a want to read change journals on NTFS file system. Is there any other way available in Java to record such changes asynchronously ? ...
Thanks in advance.