Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
6k views

Is there a sophisticated file system monitor for Java which is freeware or open source?

I'm looking for a Java library which can notify me about changes on the file system. I found some free libraries, but they all use brute-force detection, i.e. polling in regular intervals. And the ...
3
votes
5answers
1k views

OS-independent API to monitor file system?

I would like to experiment with ideas about distributed file synchronization/replication. To make it efficient when the user is working, I would like to implement some kind of daemon to monitor ...
1
vote
2answers
235 views

Reading updated files on the fly in Python

I'm writing two Python scripts that both parse files. One is a standard unix logfile and the other is a binary file. I'm trying to figure out the best way to monitor these so I can read data as soon ...
0
votes
0answers
81 views

File monitor stop after save file

I'm trying to monitor the edition of a single file using kqueue through a wrapper called UKKQueue available here. This wrapper is very simple, here is the test code I'm using: @implementation ...
0
votes
1answer
81 views

Detect Windows Automatic Updates

I have software that replaces core OS files. Problem is that Microsoft updates replace those files, rendering the program inoperative. How can I detect file replacement at boot time, due to automatic ...
0
votes
2answers
286 views

monitoring file and directory access on linux

Do you know of any linux program, that would monitor accesses to directories and files in the filesystem? I would like to able to produce some report of how many times certain files were accessed in ...
0
votes
4answers
317 views

How to make a folder in windows explorer activate an external application?

I need to create an application that when a user copies a file into an specific folder, my application will be activated and the file will be changed, also, when the user reads back any file in the ...