EXFAT_STATISTICS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// winioctl.h

typedef struct _EXFAT_STATISTICS {
  DWORD CreateHits;
  DWORD SuccessfulCreates;
  DWORD FailedCreates;
  DWORD NonCachedReads;
  DWORD NonCachedReadBytes;
  DWORD NonCachedWrites;
  DWORD NonCachedWriteBytes;
  DWORD NonCachedDiskReads;
  DWORD NonCachedDiskWrites;
} EXFAT_STATISTICS, *PEXFAT_STATISTICS;
View the official Win32 API reference

NtDoc

No description available.

Win32 API reference (ns-winioctl-exfat_statistics)

EXFAT_STATISTICS structure

Description

Contains statistical information from the exFAT file system.

Members

CreateHits

The number of create operations.

SuccessfulCreates

The number of successful create operations.

FailedCreates

The number of failed create operations.

NonCachedReads

The number of read operations that were not cached.

NonCachedReadBytes

The number of bytes read from a file that were not cached.

NonCachedWrites

The number of write operations that were not cached.

NonCachedWriteBytes

The number of bytes written to a file that were not cached.

NonCachedDiskReads

The number of read operations that were not cached. This value includes sub-read operations.

NonCachedDiskWrites

The number of write operations that were not cached. This value includes sub-write operations.

See also

FAT_STATISTICS

FILESYSTEM_STATISTICS