Files system events

  • Thread starter Thread starter Buddy Ackerman
  • Start date Start date
B

Buddy Ackerman

Windows Explorer windows can update autmatically when a a file is deleted
from another application, I want to be able to respond to similar events.
What file system events are there and how do I respond to them in .NET?


--Buddy
 
Hi, I know the answer only on Win32 programming, try using
ReadDirectoryChangesW (see documentation on MSDN).
Hope this help.
Regards,
Andrea
 
Buddy Ackerman said:
Windows Explorer windows can update autmatically when a a file is deleted
from another application, I want to be able to respond to similar events.
What file system events are there and how do I respond to them in .NET?

Take a look at FindFirstChangeNotification.

--

-GJC [MS Windows SDK MVP]
-Software Consultant (Embedded systems and Real Time Controls)
- http://www.mvps.org/ArcaneIncantations/consulting.htm
(e-mail address removed)
 
Is there a way to determine the user that made the change?


--Buddy



Gary Chanson said:
Buddy Ackerman said:
Windows Explorer windows can update autmatically when a a file is deleted
from another application, I want to be able to respond to similar events.
What file system events are there and how do I respond to them in .NET?

Take a look at FindFirstChangeNotification.

--

-GJC [MS Windows SDK MVP]
-Software Consultant (Embedded systems and Real Time Controls)
- http://www.mvps.org/ArcaneIncantations/consulting.htm
(e-mail address removed)
 
Back
Top