NtQueryFullAttributesFile - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTIOAPI_H

NTSYSCALLAPI
NTSTATUS
NTAPI
NtQueryFullAttributesFile(
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PFILE_NETWORK_OPEN_INFORMATION FileInformation
    );

#endif

View code on GitHub
#ifndef _NTZWAPI_H

NTSYSCALLAPI
NTSTATUS
NTAPI
ZwQueryFullAttributesFile(
    _In_ POBJECT_ATTRIBUTES ObjectAttributes,
    _Out_ PFILE_NETWORK_OPEN_INFORMATION FileInformation
    );

#endif

View code on GitHub

This 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.

ObjectAttributes

Path and name of File Object to query.

Attributes

Pointer to FILE_NETWORK_OPEN_INFORMATION structure.

Documented by

See also