返回最后修改指定文件或文件夹的日期和时间。只读。
object.DateLastModified
object 应为 File 或 Folder 对象。
下面的代码通过一个文件说明了 DateLastModified 属性的用法:
[JScript] function ShowFileAccessInfo(filespec) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFile(filespec); s = filespec.toUpperCase() + "<br>"; s += "Created:" + f.DateCreated + "<br>"; s += "Last Accessed:" + f.DateLastAccessed + "<br>"; s += "Last Modified:" +f.DateLastModified
; return(s); } [VBScript] Function ShowFileAccessInfo(filespec) Dim fso, f, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile(filespec) s = UCase(filespec) & "<BR>" s = s & "Created:" & f.DateCreated & "<BR>" s = s & "Last Accessed:" & f.DateLastAccessed & "<BR>" s = s & "Last Modified:" &f.DateLastModified
ShowFileAccessInfo = s End Function
Attributes 属性 | DateCreated 属性 | DateLastAccessed 属性 | Drive 属性 | Files 属性 | IsRootFolder 属性 | Name 属性 | ParentFolder 属性 | Path 属性 | ShortName 属性 | ShortPath 属性 | Size 属性 | SubFolders 属性 | Type 属性