如何在 Windows 10 中将磁盘/sdcard 格式化为 FAT32

LPC*_*hip 18 fat32 windows-10

在 Windows 10 中,当您想将分区专门格式化为 FAT32(例如将在手机中使用的 SD 卡)时,当您右键单击磁盘并选择格式时,只有 NTFS 和 exFAT 显示为可能的格式选项.

有没有另一种方法,最好不安装额外的工具或启动到不同的模式来格式化为 FAT32?

Jou*_*eek 18

虽然 LPChip 的答案是“正确的”,并且在大多数情况下应该可以工作,除非分区超过 32GB。我通常使用 ridgecrop 的一些第三方软件来做同样的事情,但处理更大的分区。在过去的几年里,我广泛使用了他们的命令行fat32formatter

他们有一个 GUI 工具,可以或多或少地完成它现在所说的那样。格式化速度非常快,我没有遇到任何问题。

在此处输入图片说明


LPC*_*hip 13

是的,最多 32 场演出,正如我后来发现的那样。

格式的 GUI 版本仅限于 NTFS 和 exFAT,可能是因为这是您在 Windows 上所需要的。

幸运的是,如果您format从命令提示符运行,您可以指定更多选项来格式化您的磁盘。

Format /? 显示以下内容:

Formats a disk for use with Windows.

FORMAT volume [/FS:file-system] [/V:label] [/Q] [/L[:state]] [/A:size]
 [/C] [/I:state] [/X] [/P:passes] [/S:state]
FORMAT volume [/V:label] [/Q] [/F:size] [/P:passes]
FORMAT volume [/V:label] [/Q] [/T:tracks /N:sectors] [/P:passes]
FORMAT volume [/V:label] [/Q] [/P:passes]
FORMAT volume [/Q]

  volume          Specifies the drive letter (followed by a colon),
                  mount point, or volume name.
  /FS:filesystem  Specifies the type of the file system (FAT, FAT32, exFAT,
              NTFS, UDF, ReFS).
  /V:label        Specifies the volume label.
  /Q              Performs a quick format. Note that this switch overrides /P.
  /C              NTFS only: Files created on the new volume will be compressed
                  by default.
  /X              Forces the volume to dismount first if necessary.  All opened
                  handles to the volume would no longer be valid.
  /R:revision     UDF only: Forces the format to a specific UDF version
                  (1.02, 1.50, 2.00, 2.01, 2.50).  The default
                  revision is 2.01.
  /D              UDF 2.50 only: Metadata will be duplicated.
  /L[:state]      NTFS Only: Overrides the default size of file record.
                  By default, a non-tiered volume will be formatted with small
                  size file records and a tiered volume will be formatted with
                  large size file records.  /L and /L:enable forces format to
                  use large size file records and /L:disable forces format to
                  use small size file records.
  /A:size         Overrides the default allocation unit size. Default settings
                  are strongly recommended for general use.
                  ReFS supports 64K.
                  NTFS supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K.
                  FAT supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K,
                  (128K, 256K for sector size > 512 bytes).
                  FAT32 supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K,
                  (128K, 256K for sector size > 512 bytes).
                  exFAT supports 512, 1024, 2048, 4096, 8192, 16K, 32K, 64K,
                  128K, 256K, 512K, 1M, 2M, 4M, 8M, 16M, 32M.

                  Note that the FAT and FAT32 files systems impose the
                  following restrictions on the number of clusters on a volume:

                  FAT: Number of clusters <= 65526
                  FAT32: 65526 < Number of clusters < 4177918

                  Format will immediately stop processing if it decides that
                  the above requirements cannot be met using the specified
                  cluster size.

                  NTFS compression is not supported for allocation unit sizes
                  above 4096.

  /F:size         Specifies the size of the floppy disk to format (1.44)
  /T:tracks       Specifies the number of tracks per disk side.
  /N:sectors      Specifies the number of sectors per track.
  /P:count        Zero every sector on the volume.  After that, the volume
                  will be overwritten "count" times using a different
                  random number each time.  If "count" is zero, no additional
                  overwrites are made after zeroing every sector.  This switch
                  is ignored when /Q is specified.
  /S:state        Specifies support for short filenames (enable, disable)
                  Short names are disabled by default
  /I:state        ReFS only: Specifies whether integrity should be enabled on
                  the new volume. "state" is either "enable" or "disable"
                  Integrity is enabled on storage that supports data redundancy
                  by default.
  /DAX[:state]    NTFS Only: Enable direct access storage (DAX) mode for this
                  volume.  In DAX mode, the volume is accessed via the memory
                  bus, boosting IO performance.  A volume can be formatted
                  with DAX mode only if the hardware is DAX capable.
                  State can specify "enable" or "disable".  /DAX is considered
                  as /DAX:enable.
Run Code Online (Sandbox Code Playgroud)

如您所见,/FS:filesystem允许您格式化为

FAT (fat16)、FAT32、exFAT、NTFS、UDF 和 ReFS。

  • 在命令提示符中使用带有各种参数的格式(包括快速格式化)在 Windows 10 上不起作用 - 它总是失败并显示错误“卷对于 FAT32 来说太大。格式化失败。”我什至尝试设置更高的分配单元大小作为参数(32K 和 64K),但它也不起作用,例如:“format MY_DRIVE_LETTER: /FS:FAT32 /A:32K /Q” (3认同)