如何在卸载时清理用户设置文件?
当用户使用 Settings.settings
更改设置时,会将其保存到:
%AppData%\Local\Microsoft\%ProcessName%_Url_%hashCode%\%version%\user.config
对于 InnoSetup 卸载程序来说,清理所有这些文件是非常困难的。
难道就没有更简单的方法吗?
When using Settings.settings
when an user changes a setting it saves it to:
%AppData%\Local\Microsoft\%ProcessName%_Url_%hashCode%\%version%\user.config
For an InnoSetup uninstaller it is very difficult to clean all those files.
Isn't there an easier way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种方法可以更改 ms config 内容写入设置的位置,但经过研究后,我最终只是避免了 MS 设置内容(与 exe 本身位于同一文件夹中的 app.exe.config 文件除外)并且只是使用 XML 序列化将我自己的设置对象序列化/反序列化到适当的 \AppData\Folder 中。
There is a way to change where the ms config stuff writes settings, but after researching it, I ended up just avoiding the MS settings stuff (except for the app.exe.config file that's in the same folder as the exe itself) and just used XML serialization to serialize\deserialize my own settings object into an appropriate \AppData\Folder.