Bootstrap

inno setup 卸载程序

inno setup在卸载程序的时候删除改程序的所有文件
将一下代码复制到.iss最后面

[code]
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
    if CurUninstallStep = usDone then
    begin
      DelTree(ExpandConstant('{app}'), True, True, True);
    end;
end;
;