Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Tracking opening and closing of files
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Question:
Is there a possibility to get notified by the operating system when a file in a certain directory is opened, closed? I need those notifications in realtime.
Answer:
Yes, Microsoft provides an API for this:
Win 32 API
If you use an older version of Delphi then you could use the free RXtools (aka 'RXlib'). They include a directory monitoring component which will get notified with an event.
The component's name is TRxFolderMonitor and it works very well. The source code is available but I think it has not been ported beyond Delphi 5.
See the link above how to install RXLib.
Comments:
|