MS-dos FAT32 格式和 windows FAT32 格式有什么区别

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/3412944/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-15 14:58:54  来源:igfitidea点击:

What are the difference between MS-dos FAT32 format and windows FAT32 format

windowsdosfat32

提问by FlintOff

What are the difference between MS-dos FAT32 format and windows FAT32 format?

MS-dos FAT32 格式和 windows FAT32 格式有什么区别?

采纳答案by Mchl

There is none.. There's only FAT32, no Windows or MS-DOS flavors of it.

没有.. 只有 FAT32,没有 Windows 或 MS-DOS 版本。

回答by duthen

Hum... Fyi, on a mac (running macos), in the Terminal application, you can scan a USB key using the "diskutil" command line utility. When the key is brand new, you get this result:

嗯...仅供参考,在 mac(运行 macos)上,在终端应用程序中,您可以使用“diskutil”命令行实用程序扫描 USB 密钥。当密钥是全新的时,您会得到以下结果:

$ diskutil list disk2 /dev/disk2 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *16.1 GB disk2 1: Windows_FAT_32 EVERIO_SD 16.1 GB disk2s1

$ diskutil list disk2 /dev/disk2 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *16.1 GB disk2 1: Windows_FAT_32 EVERIO_SD 16.1 GB disk2s1

If you format the USB key with the "Disk Utility.app", using the "MS-DOS (FAT32)" parameter, then you will get:

如果您使用“Disk Utility.app”格式化 U 盘,使用“MS-DOS (FAT32)”参数,那么您将获得:

$ diskutil list disk2 /dev/disk2 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *16.1 GB disk2 1: DOS_FAT_32 EVERIO_SD 16.1 GB disk2s1

$ diskutil list disk2 /dev/disk2 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: FDisk_partition_scheme *16.1 GB disk2 1: DOS_FAT_32 EVERIO_SD 16.1 GB disk2s1

So, at least from the point of view of macos, there seems to be a potential difference between "Windows_FAT_32" and "DOS_FAT_32"...

所以,至少从 macos 的角度来看,“Windows_FAT_32”和“DOS_FAT_32”之间似乎存在潜在的差异......

回答by Simon Liu

FAT32 is a filesystem and has nothing much to do with the operating system. So whatever OS it is, FAT32 is FAT32, and they're the same.

FAT32 是一个文件系统,与操作系统没有太大关系。所以不管是什么操作系统,FAT32 就是 FAT32,它们是一样的。

Afaik, MS-DOS used FAT16 as its default filesystem, while FAT32 was first introduced by Win95 OSR2, or Win97 as known by others. I'm FAT32 is not supported by MS-DOS versions before v7.x, which was shipped with Win95 OSR2.

Afaik,MS-DOS 使用 FAT16 作为其默认文件系统,而 FAT32 最初是由 Win95 OSR2 或其他人所知的 Win97 引入的。我是 FAT32 不支持 v7.x 之前的 MS-DOS 版本,它是随 Win95 OSR2 一起提供的。

So if your question was "What's the difference between MS-DOS FAT and Windows FAT", the answer would be MS-DOS uses FAT16 while Windows uses FAT32.

因此,如果您的问题是“MS-DOS FAT 和 Windows FAT 之间有什么区别”,那么答案将是 MS-DOS 使用 FAT16,而 Windows 使用 FAT32。