3

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

我尝试了以下方法但没有成功:

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

2 回答 2

5

使用该ExpandConstant函数扩展任何常量值:

function dbExistis: Boolean;
begin
  Result := FileExists(ExpandConstant('{commonappdata}\LR-International\DB_LR.IB'));
end;
于 2013-01-23T11:04:56.180 回答
3

使用ExpandConstant功能

function dbExistis() : Boolean;
  begin
    Result := FileExists(ExpandConstant('{commonappdata}') + '\LR-International\DB_LR.IB');
  end;
于 2013-01-23T11:05:37.003 回答