}
Issues:
-Windows does not seem to have an attribute change notification
+It appears that windows does not have an attribute change notification
+http://msdn.microsoft.com/en-us/library/windows/desktop/aa364391(v=vs.85).aspx
+
+Notifications:
+IsCreate()
+IsDelete()
+IsModify()
+IsAttribute() * NOT SUPPORTED ON WINDOWS *
+IsRename()
func (e *FileEvent) IsCreate() bool { return (e.mask & FS_CREATE) == FS_CREATE}\r
\r
// IsDelete reports whether the FileEvent was triggerd by a delete\r
-func (e *FileEvent) IsDelete() bool { return (e.mask & FS_DELETE) == FS_DELETE }\r
+func (e *FileEvent) IsDelete() bool { return ((e.mask & FS_DELETE) == FS_DELETE || (e.mask & FS_DELETE_SELF) == FS_DELETE_SELF }\r
\r
// IsModify reports whether the FileEvent was triggerd by a file modification\r
func (e *FileEvent) IsModify() bool { return (e.mask & FS_MODIFY) == FS_MODIFY }\r