AutoHotKey(오토핫키) 설명서 FileGetTime

Posted by 발전소장
2014. 8. 14. 00:27 AutoHotKey/Commands

FileGetTime

파일의 타임 스탬프를 취득

FileGetTime, OutputVar [, Filename, WhichTime]

Parameters

인수명설명
OutputVar 결과를 격납하는 변수명
Filename 타임 스탬프를 취득하는 파일명.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
생략시는, 제일 안쪽의File-Loop그리고 대상이 되고 있는 파일이 대상이 된다.
WhichTime 어느 타임 스탬프를 취득할까.
M
최종 갱신 일시(디폴트)
C
작성 일시
A
최종 액세스 일시

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

최종 액세스 일시는NTFS에서만 취득 가능.

일자 시각은YYYYMMDDHH24MISS의 서식에서 취득된다.

Related

FileSetTime, If var is [not] type, FileGetAttrib, FileSetAttrib, FileGetSize, FileGetVersion, File-loop, EnvAdd, EnvSub

Example(s)

FileGetTime, OutputVar, C:\My Documents\test.doc ; Retrieves the modification time by default. 
FileGetTime, OutputVar, C:\My Documents\test.doc, C ; Retrieves the creation time.