AutoHotKey(오토핫키) 설명서 FileGetTime
FileGetTime
파일의 타임 스탬프를 취득
FileGetTime, OutputVar [, Filename, WhichTime]
Parameters
인수명 | 설명 |
---|---|
OutputVar | 결과를 격납하는 변수명 |
Filename |
타임 스탬프를 취득하는 파일명. 상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다. 생략시는, 제일 안쪽의File-Loop그리고 대상이 되고 있는 파일이 대상이 된다. |
WhichTime |
어느 타임 스탬프를 취득할까.
|
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.
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 FileInstall (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 FileGetVersion (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileGetSize (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileGetShortcut (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileGetAttrib (0) | 2014.08.14 |