如何使用占位符像Inno Setup的脚本{应用}或{}温度?(How to use placeho

2019-07-18 14:11发布

如何访问(目录)从Inno Setup的脚本代码常量?

我曾尝试没有成功如下:

function dbExistis() : Boolean;
begin
  Result := FileExists({commonappdata} + '\LR-International\DB_LR.IB');
end;

Answer 1:

使用ExpandConstant功能

function dbExistis() : Boolean;
  begin
    Result := FileExists(ExpandConstant('{commonappdata}') + '\LR-International\DB_LR.IB');
  end;


Answer 2:

使用ExpandConstant功能扩展任何常量值:

function dbExistis: Boolean;
begin
  Result := FileExists(ExpandConstant('{commonappdata}\LR-International\DB_LR.IB'));
end;


文章来源: How to use placeholder like {app} or {temp} in Inno Setup script?
标签: inno-setup