When a directory is registered for this event then the WatchKey
is queued when it is observed that an entry is created in the directory
or renamed into the directory. The event count
for this event is always 1.
When a directory is registered for this event then the WatchKey
is queued when it is observed that an entry is deleted or renamed out of
the directory. The event count for this event
is always 1.
When a directory is registered for this event then the WatchKey
is queued when it is observed that an entry in the directory has been
modified. The event count for this event is
1 or greater.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],["`StandardWatchEventKinds` defines standard file system event types. Key actions include monitoring directory entry changes: `ENTRY_CREATE` (entry created), `ENTRY_DELETE` (entry deleted), and `ENTRY_MODIFY` (entry modified). Each of these events has a count of 1, with a `WatchKey` being queued. The `OVERFLOW` event indicates potential loss of events and its context may be null; its count can be greater than 1. These are the standard events for a `WatchService`.\n"]]