(PWS4 IIS4 IIS5)
DateCreated — 指定されたファイルまたはフォルダの作成された日付と時刻を返します。値の取得のみ可能です。
構文
object.DateCreated
パラメータ
- object
- File オブジェクトを指定します。
戻り値
ファイルの作成日を返します。
説明
返される値は日付と時刻です。
例
JScript
1 2 3 4 5 6 7 8 | function ShowFileInfo(filespec) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFile(filespec); s = "作成日時: " + f.DateCreated; return(s); } |
VBScript
1 2 3 4 5 6 | Function ShowFileInfo(filespec) Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile(filespec) ShowFileInfo = "作成日時: " & f.DateCreated End Function |