AutoHotKey(오토핫키) 설명서 FileGetSize
FileGetSize
파일의 사이즈를 취득
FileGetSize, OutputVar [, Filename, Units]
Parameters
인수명 | 설명 |
---|---|
OutputVar | 결과를 격납하는 변수명 |
Filename |
사이즈를 취득하는 파일명. 상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다. 생략시는, 제일 안쪽의File-Loop그리고 대상이 되고 있는 파일이 대상이 된다. |
Units |
「K」(을)를 지정하면 킬로바이트 단위, 「M」(을)를 지정하면메가바이트 단위로 취득. 소수점 이하는 사사오입 된다. 생략시는 아르바이트 단위. |
ErrorLevel
성공시는 「0」, 실패시는 「1」.
Remarks
FileName에 디렉토리를 지정했을 경우의 동작은 시스템에 의존한다.
통상은0(이)가 된다.
Related
FileGetAttrib, FileSetAttrib, FileGetTime, FileSetTime, FileGetVersion, File-loop
Example(s)
FileGetSize, size, C:\My Documents\test.doc ; Retrieve the size in bytes. FileGetSize, size, C:\My Documents\test.doc, K ; Retrieve the size in Kbytes.
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 FileGetVersion (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 FileGetTime (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileGetShortcut (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileGetAttrib (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 FileExist() (0) | 2014.08.14 |