如何在Inno Setup中获取安装程序路径?
您知道在 Inno Setup 中获取安装程序路径的正确方法吗?
我想在 [Code]
部分中捕获该值。
Do you know the right method to get the installer path in Inno Setup?
I want to catch that value inside the [Code]
section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
{srcexe}
将为您提供安装程序的路径和文件名。{src}
只会为您提供安装程序路径。{srcexe}
will give you the path and filename of the setup.{src}
will give you just the installer path.您应该使用
{srcexe}
常量。在 Pascal 脚本中,您可以使用ExpandConstant
< 获取常量的值/a> 函数,如You should use the
{srcexe}
constant. In Pascal scripting, you can obtain the values of constants using theExpandConstant
function, as in