Windows 7 说 8.6 GB 的文件无法放入 14.7 GB 的空间?

Windows 7 说 8.6 GB 的文件无法放入 14.7 GB 的空间?

下面的图片很好地解释了这一点,但 Windows 似乎不允许我将 8.16 GB 的 .vhd 文件放在具有 14.6 GB 可用空间的闪存驱动器上。

Windows 7 屏幕截图

答案1

它的格式为 FAT32。FAT32 支持的最大文件大小为 4GB。您必须将驱动器重新格式化为 NTFS 或 ExFAT。

答案2

问题是目标文件系统FAT32,它仅支持最大 4 GB 的文件。如果您以前从未遇到过此问题,错误消息可能不太清楚。您可以用多个 4 GB 文件填充 14.6 GB 空间,但单个文件不得大于 4 GB。您需要将磁盘重新格式化为NTFS或者外置FAT以支持更大的文件。

答案3

除了 David Marshall 的回答之外,无需重新格式化驱动器。您可以使用命令从 FAT32 升级到 NTFS convert

>convert /?
Converts a FAT volume to NTFS.

CONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]


  volume      Specifies the drive letter (followed by a colon),
              mount point, or volume name.
  /FS:NTFS    Specifies that the volume will be converted to NTFS.
  /V          Specifies that Convert will be run in verbose mode.
  /CvtArea:filename
              Specifies a contiguous file in the root directory
              that will be the place holder for NTFS system files.
  /NoSecurity Specifies that the security settings on the converted
              files and directories allow access by all users.
  /X          Forces the volume to dismount first if necessary.
              All open handles to the volume will not be valid.

答案4

FAT 格式的驱动器无法识别大于 4 GB 的文件;您必须将其重新格式化为NTFS。您可能有一个大小为 100 GB 的目录。但是,单个文件的大小不得超过 4 GB。

卷上文件的最大可能大小FAT32为 4 GB 减 1 字节(232-1 字节)。视频应用程序、大型数据库和一些其他软件很容易超出此限制。较大的文件需要其他格式类型,例如 NTFS。

參考文獻:维基百科上有关 FAT32 的文章

相关内容