system
1
(imported topic written by SystemAdmin)
Hi BF Experts,
Currently what I have is this:
Q: version of file “file1.exe” of folder “C:\Program Files\Folder1”
A: 3.5.1.1
Is there a way to have this analysis report pass or fail given the versioning format (3.5.1.1)?
In addition, we would like to have the output like this if the version is equal orhigher than.
A: Pass, 3.6.0.0
Appreciate the help on this, thanks
(imported comment written by jessewk)
((if (it >= “3.6”) then "Pass, " & it as string else “Fail”) of version of it) of files “file1.exe” of folders “C:\Program Files\Folder1”
If file1.exe does not exists, you will get nothing
If it does exist and is less than version 3.6, you will get: “Fail”
If it does exist and is >= version 3.6, you will get: “Pass, x.x.x.x” where x.x.x.x is the version number.
system
3
(imported comment written by SystemAdmin)
thanks jessewk! i’ll check if this would work on my requirements.