如何访问(目录)从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;
使用ExpandConstant
功能扩展任何常量值:
function dbExistis: Boolean;
begin
Result := FileExists(ExpandConstant('{commonappdata}\LR-International\DB_LR.IB'));
end;