VBS教程:对象-File 对象

 更新时间:2006年11月16日 00:00:00   作者:  

File 对象

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

说明

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

 Function ShowDateCreated(filespec)   Dim fso,f    Set fso = CreateObject("Scripting.FileSystemObject")    Set f = fso.GetFile(filespec)  ShowDateCreated = f.DateCreatedEnd Function

相关文章

最新评论