本文介绍了删除应用程序后为什么会留下日志?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好。

我正在努力解决wix工具集的问题:为什么在我卸载应用程序后,包括日志在内的一些文件夹不会被删除?这是一个bug还是没有?



Hello to everyone.
I am struggling against the issue with wix toolset: why after I uninstall an application some folders including the "logs" are not deleted? is it a bug or not?

<Directory Id="logs" Name="logs">
<Component Id="logs" Guid="0A4D0A3F-2E0D-1B1A-1C6D-1A0F8FAAABC6" Win64="$(var.is64)">
      <CreateFolder Directory="logs">
       <Permission GenericAll="yes" User="Everyone" />
       </CreateFolder>
       <RemoveFolder Id="logs"  On="uninstall"></RemoveFolder>
       </Component>
       </Directory>

推荐答案



这篇关于删除应用程序后为什么会留下日志?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 04:40