©
Dieses Dokument verwendetPHP-Handbuch für chinesische WebsitesFreigeben
JScript | 语言参考 |
返回指定文件或文件夹的创建日期和时间。 只读。
object.DateCreated
object应为File或Folder对象。
下面的代码通过一个文件说明了DateCreated属性的用法:
function ShowFileInfo(filespec) {
var fso, f, s;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFile(filespec);
s = "Created: " +f.DateCreated;
return(s);
}
Attributes 属性 | DateLastAccessed 属性 | DateLastModified 属性 | Drive 属性 | Files 属性 | IsRootFolder 属性 | Name 属性 | ParentFolder 属性 | Path 属性 | ShortName 属性 | ShortPath 属性 | Size 属性 | SubFolders 属性 | Type 属性
应用于: File 对象 | Folder 对象