user1161599
user1161599

Reputation: 271

python file monitoring

I'm working on Windows. and I want to monitor of system file.(access, open, write, modify) What modules are best for what I need to do? Is it possible to use python?

Thank you.

Upvotes: 0

Views: 462

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798486

If you want a cross-platform solution then I recommend you delegate to PyGObject or PyQt4. You'll need to write your program as an event loop, but I suspect that you may not be far from doing that if you haven't already.

Upvotes: 1

Related Questions