#ifndef _NTIOAPI_H
typedef struct _FILE_FS_ATTRIBUTE_INFORMATION
{
ULONG FileSystemAttributes;
LONG MaximumComponentNameLength;
ULONG FileSystemNameLength;
_Field_size_bytes_(FileSystemNameLength) WCHAR FileSystemName[1];
} FILE_FS_ATTRIBUTE_INFORMATION, *PFILE_FS_ATTRIBUTE_INFORMATION;
View code on GitHubThis structure is documented in Windows Driver Kit.
FILE_FS_ATTRIBUTE_INFORMATION is output buffer in a call to NtQueryVolumeInformationFile function with FileFsAttributeInformation information class.
??? (0x1F)
Maximum length of file name on specified device.
Length of FileSystemName array, in bytes.
Name of File System on specified device (ex. "NTFS").