Windows 安装程序删除生成的日志文件
您好,我有 Windows 安装程序来安装我的程序并卸载它。 安装的一切都很顺利,但卸载部分除外。 我的程序正在“程序位置\Log\”目录中生成日志文件。 我想添加自定义命令来在卸载之前或之后清除此文件夹,以便卸载过程将完全删除该目录,并且不会在程序文件系统中留下混乱。
知道如何做到这一点。 另外,如果可能的话,我不想为此添加额外的文件。
谢谢你的建议...
Hi I have windows installer that install my program and uninstall it.
everything with installation goes fine but for uninstall part.
My program is generating Log files in "program location\Log\" directory.
I would like to add custom command to clear this folder before or after uninstallation so the uninstall process will completly remove the directory and does not leave mess in program files system.
Any idea how to do this.
Also i do not want to add additional file for this, if it is possible.
thank you for your suggestions...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用RemoveFile 操作来删除日志文件。
http://msdn.microsoft.com/en-us/库/aa371201(VS.85).aspx
You can use a RemoveFile operation to delete the log files.
http://msdn.microsoft.com/en-us/library/aa371201(VS.85).aspx
我决定添加卸载时执行的bat 文件,这将清除。
I have decided to add bat file that is executed when uninstall happens and this will clear up.