EXFAT_STATISTICS structure (winioctl.h)

Contains statistical information from the exFAT file system.

Syntax

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;

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.

Requirements

Requirement Value
Minimum supported client Windows Vista with SP1 [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header winioctl.h (include Windows.h)

See also

FAT_STATISTICS

FILESYSTEM_STATISTICS