FileSystemWatcher.Error Event
Assembly: System (in system.dll)
'Declaration Public Event Error As ErrorEventHandler 'Usage Dim instance As FileSystemWatcher Dim handler As ErrorEventHandler AddHandler instance.Error, handler
/** @event */ public void add_Error (ErrorEventHandler value) /** @event */ public void remove_Error (ErrorEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The system notifies you of file changes, and it stores those changes in a buffer that the component creates and passes to the APIs. If there are many changes in a short time, the buffer can overflow. This causes the component to lose track of changes in the directory, and it will only provide blanket notification. Increasing the size of the buffer is expensive, as it comes from non paged memory that cannot be swapped out to disk, so keep the buffer as small as possible. To avoid a buffer overflow, use the NotifyFilter, Filter, and IncludeSubdirectories properties to filter out unwanted change notifications.
Note: |
|---|
| Common file system operations might raise more than one event. For example, when a file is moved from one directory to another, several OnChanged and some OnCreated and OnDeleted events might be raised. Moving a file is a complex operation that consists of multiple simple operations, therefore raising multiple events. Likewise, some applications (for example, antivirus software) might cause additional file system events that are detected by FileSystemWatcher. |
Note: