通过本文主要向大家介绍了vbs filesystemobject,filesystem,filesystemobject,filesystem steam.dll,filesystemwatcher等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
FileSystem 属性
返回指定的驱动器使用的文件系统的类型。
object.FileSystem
object 应为 Drive 对象的名称。
说明
可用的返回类型包括 FAT、NTFS 和 CDFS。
以下代码举例说明如何使用 FileSystem 属性:
Function ShowFileSystemType(drvspec) Dim fso,d, s Set fso = CreateObject("Scripting.FileSystemObject") Set d = fso. GetDrive(drvspec) ShowFileSystemType = d.FileSystemEnd Function
</div>

