如何在Inno Setup中获取安装程序路径?

发布于 2024-10-21 16:34:31 字数 80 浏览 1 评论 0原文

您知道在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深白境迁sunset 2024-10-28 16:34:31

{srcexe} 将为您提供安装程序的路径和文件名。
{src} 只会为您提供安装程序路径。

{srcexe} will give you the path and filename of the setup.
{src} will give you just the installer path.

还如梦归 2024-10-28 16:34:31

您应该使用 {srcexe} 常量。在 Pascal 脚本中,您可以使用 ExpandConstant< 获取常量的值/a> 函数,如

path := ExpandConstant('{srcexe}');

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}');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文