C# 调用dll获取dll物理路径的方法

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
写类库项目时,经常会有某些特殊业务需要用到服务器端的物理路径,使用传统的 System.IO.Directory.GetCurrentDirectory()方法返回的则是WINNT\System32目录,这个一般不能满 足正常的业务需求,而要得到具体运行DLL所在的物理目录可以通过Assembly.GetExecutingAssembly().CodeBase属 性来取得,具体参考方法如下:
    /// <summary>  
     /// 获取Assembly的运行路径  
     /// </summary>  
     ///<returns></returns>  
     private string GetAssemblyPath()  
     {  
         string _CodeBase =System.Reflection.Assembly.GetExecutingAssembly().CodeBase ;  
         _CodeBase = _CodeBase.Substring(8,_CodeBase.Length -8);    // 8是file:// 的长度  
         string[] arrSection = _CodeBase.Split(new char[]{'/'});             
         string _FolderPath = "";  
         for(int i=0;i<arrSection.Length-1;i++)  
         {  
             _FolderPath += arrSection[i] + "/";  
         }  
         return _FolderPath;  
     }  

标签: 服务器 服务器端

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:抓取豆瓣电影TOP250的PHP代码

下一篇:iOS开发 之 WebView点击图片看大图效果