首页 > 编程 > VBScript > 正文

VBS教程:对象-File 对象

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

File 对象

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

说明

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

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