我需要读取/写入与任何exe无关的配置文件。我正在尝试这个:
var appConfiguration = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap() { ExeConfigFilename = "SlamDunkSuper.config" }, ConfigurationUserLevel.None);
if(appConfiguration == null) {
//Configuration file not found, so throw an exception
//TODO: thow an exception here
} else {
//Have Configuration, so work on the contents
var fileEnvironment = appConfiguration.GetSection("fileEnvironment");
}
不会抛出任何异常,但fileEnvironment始终为null。这是文件内容:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="fileEnvironment" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<fileEnvironment>
<add key="DxStudioLocation" value="123456"/>
</fileEnvironment>
</configuration>
有人请带我离开荒野。在获得该部分的内容后,我也不知道如何在NameValueCollection中编写或更改条目。 感谢
答案 0 :(得分:0)
您可以通过一些小的调整来全球化AppSettingsSection:
<section name="fileEnvironment" type="System.Configuration.AppSettingsSection"/>
消费:
var appConfiguration = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap() { ExeConfigFilename = "SlamDunkSuper.config" }, ConfigurationUserLevel.None);
if (!appConfiguration.HasFile) // no need to null check, ConfigurationManager.OpenMappedExeConfiguration will always return an object or throw ArgumentException
{
//Configuration file not found, so throw an exception
}
else
{
var section = appConfiguration.GetSection("fileEnvironment") as AppSettingsSection;
if (section != null)
{
var dxStudioLocation = section.Settings["DxStudioLocation"].Value;
}
}
答案 1 :(得分:-2)
在.net中,配置文件由正在运行的exe文件选择,所以如果你有5个项目(4个dll和1个exe),并且当你从exe文件运行你的应用程序时,每个项目都有不同的配置文件由他加载的dll会认为exe的配置文件是他们的配置文件。
换句话说,要读取dll项目的配置文件,需要使用他的路径显式打开它。
希望有所帮助