FILE_FS_GUID_INFORMATION - NtDoc

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

typedef struct _FILE_FS_GUID_INFORMATION
{
    GUID FsGuid;
} FILE_FS_GUID_INFORMATION, *PFILE_FS_GUID_INFORMATION;

#endif

View code on GitHub
// ntifs.h

typedef struct _FILE_FS_GUID_INFORMATION {
  GUID FsGuid;
} FILE_FS_GUID_INFORMATION, *PFILE_FS_GUID_INFORMATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-file_fs_guid_information)

Description

The FILE_FS_GUID_INFORMATION structure contains GUID infomation.

Members

FsGuid

GUID that uniquely identifies the file system. This identifier can be used to distinguish between different file systems, even if they are of the same type, across various volumes or storage devices.

Remarks

See also

FS_INFORMATION_CLASS

NtQueryVolumeInformationFile