VBS教程:属性-FileSystem 属性
人气:0想了解VBS教程:属性-FileSystem 属性的相关内容吗,在本文为您仔细讲解的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:VBBSS教教程程属属性性FFiilleeSSyysstteemm属属性性,下面大家一起来学习吧。
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.FileSystem
End Function
加载全部内容