「VBScript]」ファイルの作成日時を取得するサンプル
サンプルコード
Dim fso
Dim gf
Set fso = WScript.CreateObject(“Scripting.FileSystemObject")
Set gf = fso.GetFile(“c:\backup\sample.txt")
WScript.Echo “作成日時:" & gf.DateCreated
Coding Changes the World
サンプルコード
Dim fso
Dim gf
Set fso = WScript.CreateObject(“Scripting.FileSystemObject")
Set gf = fso.GetFile(“c:\backup\sample.txt")
WScript.Echo “作成日時:" & gf.DateCreated