gpt4 book ai didi

c# - 如何在无法初始化时恢复配置设置

转载 作者:行者123 更新时间:2023-11-30 16:56:22 26 4
gpt4 key购买 nike

我的程序有一些应用程序设置和一些用户设置。在某些机器上,我的用户设置配置文件损坏并停止我的程序加载。然后我登录机器并删除存储在的 UserConfig 目录%USERPROFILE%\Appdata\Local\MyApp

当我的文件损坏时,抛出的错误是Configuration Settings Failed To Initialize 所以我想知道这是否发生在我的程序中是否有办法删除损坏的文件并重置配置。

到目前为止我有:

try
{
var prop1= Settings.Default.prop1;
}
catch (Exception ex)
{
var userSettingsLocation =
Path.Combine(Environment.ExpandEnvironmentVariables(
"%USERPROFILE%"), "AppData","Local", "MyApp");
if (Directory.Exists(userSettingsLocation))
{
DeleteDirectory(userSettingsLocation); // This is a reccursive
// delete method
// I need to reload settings
}
}

这可以很好地删除文件,但是如果我尝试使用例如 Settings.Reset(); 再次读取我的设置,我仍然会遇到同样的错误。删除损坏的文件后,我需要以某种方式重置配置设置。这可能吗?

最佳答案

如果其他人想知道,这里是诀窍:

try
{
var prop1= Settings.Default.prop1;
}
catch (Exception ex)
{
var userSettingsLocation =
Path.Combine(Environment.ExpandEnvironmentVariables(
"%USERPROFILE%"), "AppData","Local", "MyApp");
if (Directory.Exists(userSettingsLocation))
{
if (ex.InnerException is System.Configuration.ConfigurationException)
{
var settingsFile = (ex.InnerException as ConfigurationException).Filename;
File.Delete(settingsFile);
System.Windows.Forms.Application.Restart();
}
}
}

关于c# - 如何在无法初始化时恢复配置设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28107597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com