ファイルの日時情報を返します。
FileGetTime ( "filename" [, option [, format]] )
パラメータ
filename | 調べるファイル名 |
option | [オプション] タイムスタンプの種類 0 = 更新日時 (デフォルト) 1 = 作成日時 2 = アクセス日時 |
format | [オプション] 返し値の種類 0 = 配列で返す(デフォルト) 1 = YYYYMMDDHHMMSS形式の文字列で返す |
返し値
成功 | ファイルの日時情報を格納した配列もしくは文字列を返します。注意を参照。 |
失敗 | 0を返し、@errorを1に設定します。 |
注意
配列は1次元配列で6つの要素を持ちます。 $array[0] = 年 (4桁)
関連
FileGetSize, FileGetAttrib, FileGetVersion, FileSetTime, FileSetAttrib
例
$t = FileGetTime(@Windowsdir & "\Notepad.exe", 1)
If Not @error Then
$yyyymd = $t[0] & "/" & $t[1] & "/" & $t[2]
MsgBox(0, "Creation date of notepad.exe", $yyyymd)
EndIf