다음을 통해 공유


FORMAT_RESULTS (Windows CE 5.0)

Send Feedback

This structure contains the results from a format operation.

typedef struct _FORMAT_RESULTS{
  DWORD dwSectorsPerFat;  DWORD dwReservedSectors;  DWORD dwSectorsPerCluster;  DWORD dwRootSectors;  DWORD dwTotalSectors;  DWORD dwNumFats;  DWORD dwFatVersion;} FORMAT_RESULTS, *PFORMAT_RESULTS;

Members

  • dwSectorsPerFat
    Number of sectors in a single FAT.
  • dwReservedSectors
    Number of reserved sectors.
  • dwSectorsPerCluster
    Number of sectors in a single cluster.
  • dwRootSectors
    Number of sectors used for the root directory. Only applies to FAT12 or FAT16.
  • dwTotalSectors
    Total sectors for the volume. Includes sectors used for the FAT, hidden sectors, root sectors, and reserved sectors.
  • dwNumFats
    Number of FATs on the volume.
  • dwFatVersion
    The FAT version, either 12, 16, or 32. Also represents the number of bits used for a cluster value.

Requirements

OS Versions: Windows CE .NET 4.2 and later.

Header: Fatutil.h.

See Also

FormatVolumeEx | FORMAT_PARAMS

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.