描述
提供对文件的所有属性的访问。
说明
以下代码举例说明如何获得一个 File 对象并查看它的属性:
Function ShowDateCreated(filespec)
Dim fso,f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(filespec)
ShowDateCreated = f.DateCreated
End Function
--------------------------------------------------------------------------------
(C) 1998 Microsoft Corporation. All rights reserved. Terms of Use.