Inno setup 卸载时删除程序文件夹(文件)

Inno setup 卸载时删除程序文件夹(文件)

//删除所有配置文件以达到干净卸载的目的
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
if CurUninstallStep = usUninstall then
if MsgBox('您是否要删除用户配置信息?', mbConfirmation, MB_YESNO) = IDYES then
//删除 {app} 文件夹及其中所有文件
DelTree('{app}', True, True, True);
end;
上一篇:动手动脑-------找出指定文件夹下所有扩展名为.txt和.java的文件


下一篇:ASP.NET MVC - 探究应用程序文件夹