Do you know the right method to get the installer path in Inno Setup?
I want to catch that value inside the [Code]
section.
Do you know the right method to get the installer path in Inno Setup?
I want to catch that value inside the [Code]
section.
{srcexe}
will give you the path and filename of the setup.
{src}
will give you just the installer path.
You should use the {srcexe}
constant. In Pascal scripting, you can obtain the values of constants using the ExpandConstant
function, as in
path := ExpandConstant('{srcexe}');