#ifndef _NTIOAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
NtQueryFullAttributesFile(
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PFILE_NETWORK_OPEN_INFORMATION FileInformation
    );
View code on GitHub#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwQueryFullAttributesFile(
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PFILE_NETWORK_OPEN_INFORMATION FileInformation
    );
View code on GitHubThis function is documented in Windows Driver Kit.
Function NtQueryFullAttributesFile is used to get information about file stored on low-speed connection device. See also description of NtQueryAttributesFile function.
Path and name of File Object to query.
Pointer to FILE_NETWORK_OPEN_INFORMATION structure.