#ifndef _NTIOAPI_H
typedef struct _FILE_NETWORK_OPEN_INFORMATION
{
    LARGE_INTEGER CreationTime;
    LARGE_INTEGER LastAccessTime;
    LARGE_INTEGER LastWriteTime;
    LARGE_INTEGER ChangeTime;
    LARGE_INTEGER AllocationSize;
    LARGE_INTEGER EndOfFile;
    ULONG FileAttributes;
} FILE_NETWORK_OPEN_INFORMATION, *PFILE_NETWORK_OPEN_INFORMATION;
View code on GitHubThis structure is documented in Windows Driver Kit.
FILE_NETWORK_OPEN_INFORMATION structure is used with two file functions:
NtQueryFullAttributesFile,NtQueryInformationFile with FileNetworkOpenInformation information class.Indicates time of file creation.
Time of last open file.
Time of last write operation.
Time of any last change.
Number of bytes that file use on storage, equal or greater to EndOfFile.
Length of file, in bytes.
File attributes.
???