G Guest May 1, 2004 #1 How can I fire an event when a file is opened or closed? Can somebody help me? Thanks a lot.
G Guest May 1, 2004 #2 no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening.
A Ayende Rahien May 1, 2004 #3 Ross said: How can I fire an event when a file is opened or closed? Can somebody help me? Thanks a lot. Click to expand... Check FileSystemWatcher
Ross said: How can I fire an event when a file is opened or closed? Can somebody help me? Thanks a lot. Click to expand... Check FileSystemWatcher
A Ayende Rahien May 1, 2004 #4 Ross said: no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening. Click to expand... 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. Click to expand... Then just check if the spesific file is opemed/closed
A Ayende Rahien May 1, 2004 #5 Ross said: no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening. Click to expand... NotifyFilter = LastAccess *Might* gives you what you want,
Ross said: no, FileSystemWatcher can't do that. It can't do anything when a specific file is opening. Click to expand... NotifyFilter = LastAccess *Might* gives you what you want,
G Guest May 2, 2004 #6 Thank you. I tried. the LastAccess couldn't help. I have to think about windows APIs.