读取配置文件参数和文件路径
Posted 寒星阁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取配置文件参数和文件路径相关的知识,希望对你有一定的参考价值。
1.读取配置文件参数
<appSettings>
<add key="Log4net" value="1"/>
</appSettings>
string filePath = System.Configuration.ConfigurationManager.AppSettings["log4netPath"].ToString();
System.IO.FileInfo file = new System.IO.FileInfo(HttpContext.Current.Server.MapPath(filePath));
以上是关于读取配置文件参数和文件路径的主要内容,如果未能解决你的问题,请参考以下文章