函数参考


DriveGetFileSystem

返回指定驱动器的文件系统类型.

DriveGetFileSystem ( "路径" )

参数

路径 要获得信息的驱动器的路径.

返回值

成功: 以字符串的形式返回指定驱动器的文件系统类型,请查看下面的列表.
失败: 设置 @error 为 1.


返回值 详细信息
1 (数字) 指定驱动器没有媒体(CD, 软驱, Zip等)或者媒体格式未知(RAW).
"FAT" 通常是那些容量低于500MB的驱动器所使用的文件系统,比如软驱,内存盘,USB"笔式"驱动器等等.
"FAT32" Windows 9x/Me 下的硬盘分区所使用的文件系统.
"NTFS" Windows 2000/XP 下的硬盘分区所使用的文件系统.
"NWFS" Novell 网络文件服务器所使用的文件系统.
"CDFS" 通常是 CD(也可能是虚拟光驱软件挂载的ISO镜像).
"UDF" 通常是 DVD.

注意/说明

以上列出的返回值可能是不完全的.

相关

DriveGetDrive, DriveGetLabel, DriveGetSerial, DriveGetType, DriveSetLabel, DriveSpaceFree, DriveSpaceTotal, DriveStatus

示例/演示


Local $sFileSystem = DriveGetFileSystem(@HomeDrive & "\") ; Find the file system type of the home drive, generally this is the C:\ drive.
MsgBox(4096, "File System Type:", $sFileSystem)