在 Windows 上检查 exFAT 驱动器的簇大小

woo*_*666 4 windows filesystems exfat windows-10

如何在 Windows 上检查 exFAT 驱动器的簇/分配大小?

phu*_*clv 10

您可以使用 wmic

C:\>wmic volume get driveletter,blocksize
BlockSize  DriveLetter
4096       D:
4096       C:
Run Code Online (Sandbox Code Playgroud)

在 powershell 上,您将有各种解决方案,如下所示

PS C:\> (Get-Volume C).AllocationUnitSize
4096
PS C:\> (Get-WmiObject win32_volume | where { $_.driveletter -eq 'C:' }).BlockSize
4096
Run Code Online (Sandbox Code Playgroud)

或者,您也可以fsutil fsinfo ntfsinfo drive:以管理员身份运行以获取更多详细信息,或fsutil fsinfo ntfsinfo <drive> | findstr /c:"Bytes Per Cluster"仅用于获取集群大小