B4J Question How do I get version info from existing .exe file.

MarcRB

Active Member
Licensed User
Longtime User
Hello,

I would like to get the file version / buildnumber of an existing .exe file.

Something like this
Not working code:
'not working example
Dim strFileVersion as string
If File.Exists(strAppFolder , "MyOtherApp.exe") = True Then
    strFileVersion = File.Version(strAppFolder , "MyOtherApp.exe")
else
    strFileVersion = "0"
end if

Can anybody help me ,

Best regards Marc
 
Solution
Top