FileGetVersion()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

FileGetVersion()

OutputVar := Mfunc.FileGetVersion([Filename])

Mfunc.FileGetVersion([Filename])

Retrieves the version of a file.

Parameters

Filename

The name of the target file, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified. If omitted, the current file of the innermost enclosing File-Loop will be used instead.
Can be MfString instance or var containing string.

Returns

Returns the version number/string.

Throws

Throws MfException is non-zero then InnerException has a message of A_LastError

Remarks

Wrapper for AutoHotkey Docs - FileGetVersion.
Static method.

Most non-executable files (and even some EXEs) won't have a version, and thus the return will be blank in these cases.

Also See:AutoHotkey Docs - FileGetVersion.

Example

version := Mfunc.FileGetVersion("C:\My Application.exe")
version := Mfunc.FileGetVersion(A_ProgramFiles . "\AutoHotkey\AutoHotkey.exe")