Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This structure describes the changes found by the CeGetFileNotificationInfo function.
typedef struct _FILE_NOTIFY_INFORMATION {DWORD NextEntryOffset; DWORD Action; DWORD FileNameLength; WCHAR FileName[1]; } FILE_NOTIFY_INFORMATION, *PFILE_NOTIFY_INFORMATION;
Members
- NextEntryOffset
Number of bytes that must be skipped to get the next record. A value of zero indicates that this is the last record. - Action
Type of change that occurred. The following table shows the possible values for Action.Value Description FILE_ACTION_ADDED The file was added to the directory. FILE_ACTION_REMOVED The file was removed from the directory. FILE_ACTION_MODIFIED The file was modified. This can be a change in the time stamp or attributes. FILE_ACTION_RENAMED_OLD_NAME The file was renamed and this value is the old name. FILE_ACTION_RENAMED_NEW_NAME The file was renamed and this value is the new name. - FileNameLength
Length of the file name portion of the record, in bytes. The length does not include the terminating NULL character. - FileName
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.
Requirements
OS Versions: Windows CE 1.01 and later.
Header: Winnt.h
See Also
File I/O Structures | CeGetFileNotificationInfo
Send Feedback on this topic to the authors