首页 > 编程 > VBScript > 正文

VBS教程:对象-Folder 对象

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

Folder 对象

提供对文件夹所有属性的访问。

说明

以下代码举例说明如何获得 Folder 对象并查看它的属性:

Function ShowDateCreated(folderspec)    Dim fso, f,     Set fso = CreateObject("Scripting.FileSystemObject")   Set f = fso.GetFolder(folderspec)  ShowDateCreated = f.DateCreatedEnd Function
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表