Help on events

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I fire an event when a file is opened or closed? Can somebody help me?
Thanks a lot.
 
no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening.
 
Ross said:
no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening.

Then just check if the spesific file is opemed/closed
 
Ross said:
no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening.

NotifyFilter = LastAccess

*Might* gives you what you want,
 
Back
Top