提供对文件所有属性的访问。
下面的代码演示了如何获得 File 对象以及如何查看它的一个属性。
[JScript] function ShowFileInfo(filespec) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFile(filespec); s = f.DateCreated; return(s); } [VBScript] Function ShowDateCreated(filespec) Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Setf
= fso.GetFile(filespec) ShowDateCreated =f.
DateCreated End Function
Copy 方法 | Delete 方法 | Move 方法 | OpenAsTextStream 方法
Attributes 属性 | DateCreated 属性 | DateLastAccessed 属性 | DateLastModified 属性 | Drive 属性 | Name 属性 | ParentFolder 属性 | Path 属性 | ShortName 属性 | ShortPath 属性 | Size 属性 | Type 属性
Drive 对象 | Drives 集合 | Files 集合 | Folder 对象 | Folders 集合