FileGetVersion

파일의 버전을 열람합니다.

FileGetVersion, OutputVar , Filename

매개변수

OutputVar

The name of the output variable in which to store the version number/string.

Filename

The name of the target file. If a full path is not specified, this function uses the search sequence specified by the system LoadLibrary function. 생략하면, 가장 안쪽 파일-회돌이에 싸인 현재 파일이 사용됩니다.

에러 처리

[v1.1.04+]: 이 명령어는 실패하면 예외를 던질 수 있습니다. 더 자세한 정보는 실행시간 에러를 참조하십시오.

ErrorLevel은 문제가 있으면 1, 그렇지 않으면 0이 설정됩니다.

A_LastError는 운영 체제의 GetLastError() 함수의 결과가 설정됩니다.

논평

대부분의 비-실행 파일 (심지어 어떤 EXE 파일)은 버전이 없습니다. 그래서 이런 경우는 OutputVar가 비어 있습니다.

FileGetAttrib, FileSetAttrib, FileGetTime, FileSetTime, FileGetSize, File-회돌이

예제

Retrieves the version of a file and stores it in Version.

FileGetVersion, Version, C:\My Application.exe

Retrieves the version of the file "AutoHotkey.exe" located in AutoHotkey's installation directory and stores it in Version.

FileGetVersion, Version, %A_ProgramFiles%\AutoHotkey\AutoHotkey.exe