码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-23 10:44:29      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:div   set   tree   begin   pch   confirm   run   app   roc   

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;

 

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

标签:div   set   tree   begin   pch   confirm   run   app   roc   

原文地址:http://www.cnblogs.com/amwuau/p/7568405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!