]> go.fuhry.dev Git - fsnotify.git/commit
windows: ignore file attributes (#520)
authorMartin Tournoij <martin@arp242.net>
Fri, 14 Oct 2022 16:34:54 +0000 (18:34 +0200)
committerGitHub <noreply@github.com>
Fri, 14 Oct 2022 16:34:54 +0000 (18:34 +0200)
commit51c38060ae4c281b581aa99220172ad933df5aa9
treee824c6f2351032b8f9c97a8acf813ef3704f2d6e
parentd314f6d898c86252e6f28cf6e25826a58d0b894c
windows: ignore file attributes (#520)

On Windows a FILE_ACTION_MODIFIED event (i.e. a Write event) is
triggered on file attribute changes, rather than some dedicates
ATTRIBUTE_CHANGED event. Looking at the docs, I don't really see a way
to distinguish between "real" write events and attribute changes. This is
very odd, but seems to be how the ReadDirectoryChangesW() API works.

The only way I can see to distinguish between the two events is to set
up two filters: one with a FILE_NOTIFY_CHANGE_ATTRIBUTES, and one
without. But that seems overly complex, and no one asked to get Chmod
events for Windows; it's not really all that interesting on Windows
anyway.

The problem is that some software (anti-virus, backup software, etc.)
can issue lots of attribute changes, causing a lot of "fake" Write
events.

So remove the FILE_NOTIFY_CHANGE_ATTRIBUTES and sysFSATTRIB flags.

This was adapted from the tilt-dev/fsnotify fork:
https://github.com/tilt-dev/fsnotify/pull/8

Fixes #487
backend_windows.go
backend_windows_test.go
fsnotify_test.go