如何从 Inno Setup 脚本代码访问(目录)常量?
我尝试了以下方法但没有成功:
function dbExistis() : Boolean;
begin
Result := FileExists({commonappdata} + '\LR-International\DB_LR.IB');
end;
如何从 Inno Setup 脚本代码访问(目录)常量?
我尝试了以下方法但没有成功:
function dbExistis() : Boolean;
begin
Result := FileExists({commonappdata} + '\LR-International\DB_LR.IB');
end;
使用该ExpandConstant
函数扩展任何常量值:
function dbExistis: Boolean;
begin
Result := FileExists(ExpandConstant('{commonappdata}\LR-International\DB_LR.IB'));
end;
function dbExistis() : Boolean;
begin
Result := FileExists(ExpandConstant('{commonappdata}') + '\LR-International\DB_LR.IB');
end;