码迷,mamicode.com
首页 > 其他好文 > 详细

U9 DLL读取配制文件

时间:2019-07-05 12:34:40      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:节点   assembly   网上   节点数据   select   生产   sele   getc   包含   

在网上大多数的例子都是如何访问程序运行的目录下的配制文件,但是U9BP里要将DLL放到生产环境,我并不知道生产环境运行的目录,所以只能DLL读取当前目录XML。

过下面几个方法都可以拿到程序所在的文件夹或程序文件

  • AppDomain.CurrentDomain.BaseDirectory 当前程序域寻找 dll 的文件夹
  • Environment.CurrentDirectory 当前工作文件夹
  • Assembly.GetCallingAssembly().Location 调用当前函数的函数的程序集的文件
  • Assembly.GetEntryAssembly().Location 入口函数程序集所在的文件
  • Assembly.GetExecutingAssembly().Location 包含当前代码的程序集的文件
  • Directory.GetCurrentDirectory 当前工作文件夹

所以我当然选第一种 AppDomain.CurrentDomain.BaseDirectory

string path = AppDomain.CurrentDomain.BaseDirectory+"XXX.xml";
XmlDocument xml = new XmlDocument();
//打开一个xml

xml.Load(path);
//获取portConfigure配置节点
XmlNode portConfigure = xml.SelectSingleNode("Configure/portConfigure");
//读取节点数据

 

U9 DLL读取配制文件

标签:节点   assembly   网上   节点数据   select   生产   sele   getc   包含   

原文地址:https://www.cnblogs.com/Xanthus/p/11137498.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!