gpt4 book ai didi

batch-file - 如何使用批处理来确定计算机是使用 FAT32 还是 NTFS?

转载 作者:行者123 更新时间:2023-12-03 18:23:55 25 4
gpt4 key购买 nike

如何使用批处理来确定计算机是使用 FAT32 还是 NTFS,这是否可行。

最佳答案

有几种方法可以做到这一点。

一种原始方式是运行 chkdsk在您感兴趣的音量上并捕获输出。该输出的一部分指示磁盘是否为 NTFS。不幸的是,这超出了您的预期,并且可能需要一些时间。

同样,您可以解析 fsutil fsinfo volumeinfo c:\ 的输出这类似于:

Volume Name : Primary
Volume Serial Number : 0x4f70e7b
Max Component Length : 255
File System Name : NTFS
Supports Case-sensitive filenames
Preserves Case of filenames
Supports Unicode in filenames
Preserves & Enforces ACL's
Supports file-based Compression
Supports Disk Quotas
Supports Sparse files
Supports Reparse Points
Supports Object Identifiers
Supports Encrypted File System
Supports Named Streams

通过提取文件系统名称,您可以找出您需要的内容。

一种稍微不那么原始的方法是使用 VBScript 和 WMI 来遍历设备阵列,检查您感兴趣的每个卷。
Win32_LogicalDisk类(在 Windows 2000 以后可用)有一个 FileSystem指示这一点的属性,您可以使用以下代码作为基础:
Set objWMIService = GetObject("winmgmts:\\.\root\cimv2")
Set colVols = objWMIService.ExecQuery ("select * from Win32_LogicalDisk")
For Each objVol in colVols
MsgBox objVol.Name & " : " & objVol.FileSystem
Next

关于batch-file - 如何使用批处理来确定计算机是使用 FAT32 还是 NTFS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6995813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com