OutputVar := Mfunc.FileGetVersion([Filename])
Retrieves the version of a file.
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 the version number/string.
Throws MfException is non-zero then InnerException has a message of A_LastError
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.
version := Mfunc.FileGetVersion("C:\My Application.exe")
version := Mfunc.FileGetVersion(A_ProgramFiles . "\AutoHotkey\AutoHotkey.exe")