FILE_NOTIFY_EXTENDED_INFORMATION structure (winnt.h)
Describes the changes found by the ReadDirectoryChangesExW function.
Syntax
typedef struct _FILE_NOTIFY_EXTENDED_INFORMATION {
DWORD NextEntryOffset;
DWORD Action;
LARGE_INTEGER CreationTime;
LARGE_INTEGER LastModificationTime;
LARGE_INTEGER LastChangeTime;
LARGE_INTEGER LastAccessTime;
LARGE_INTEGER AllocatedLength;
LARGE_INTEGER FileSize;
DWORD FileAttributes;
union {
DWORD ReparsePointTag;
DWORD EaSize;
} DUMMYUNIONNAME;
LARGE_INTEGER FileId;
LARGE_INTEGER ParentFileId;
DWORD FileNameLength;
WCHAR FileName[1];
} FILE_NOTIFY_EXTENDED_INFORMATION, *PFILE_NOTIFY_EXTENDED_INFORMATION;
Members
NextEntryOffset
The number of bytes that must be skipped to get to the next record. A value of zero indicates that this is the last record.
Action
The type of change that has occurred. This member can be one of the following values.
CreationTime
The date and time that the directory or file was created and added to the file system.
LastModificationTime
The date and time that the content of the directory or file was last modified in the file system.
LastChangeTime
The date and time that the metadata or content of the directory or file was last changed in the file system.
LastAccessTime
The date and time the directory or file was last accessed in the file system.
AllocatedLength
The allocated size of the file, in bytes.
FileSize
The new size of the directory or file in bytes, or the old size if the size is unchanged.
FileAttributes
The attributes of the directory or file.
DUMMYUNIONNAME
DUMMYUNIONNAME.ReparsePointTag
DUMMYUNIONNAME.EaSize
FileId
The identifier of the directory or file.
ParentFileId
The identifier of the parent directory for the file.
FileNameLength
The size of the file name portion of the record, in bytes. This value does not include a terminating null character.
FileName[1]
A variable-length field that contains the file name relative to the directory handle. The file name is in the Unicode character format and is not null-terminated.
If there is both a short and long name for the file, the function will return one of these names, but it is unspecified which one.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 10, version 1709 [desktop apps only] |
Minimum supported server | Windows Server 2016 [desktop apps only] |
Header | winnt.h (include Windows.h) |