首页 > 编程 > VBScript > 正文

VBS教程:属性-FileSystem 属性

2020-07-26 12:13:32
字体:
来源:转载
供稿:网友

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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表