博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取DLL文件的执行路径
阅读量:6457 次
发布时间:2019-06-23

本文共 646 字,大约阅读时间需要 2 分钟。

在写类库项目时,经常会有某些特殊业务需要用到服务器端的物理路径,使用传统的System.IO.Directory.GetCurrentDirectory()方法返回的则是WINNT\System32目录,这个一般不能满足正常的业务需求,而要得到具体运行DLL所在的物理目录可以通过Assembly.GetExecutingAssembly().CodeBase属性来取得,具体参考方法如下:
ExpandedBlockStart.gif
ContractedBlock.gif
        
/**/
/// <summary>
InBlock.gif        
/// 获取Assembly的运行路径
InBlock.gif        
/// </summary>
ExpandedBlockEnd.gif        
/// <returns></returns>
None.gif
        
private
 
string
 GetAssemblyPath()
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
string _CodeBase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase ;
InBlock.gif
InBlock.gif            _CodeBase 
= _CodeBase.Substring(8,_CodeBase.Length - 8);    // 8是 file:// 的长度
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif            
string[] arrSection = _CodeBase.Split(new char[]dot.gif{
'/'}
);
InBlock.gif            
InBlock.gif            
string _FolderPath = "";
InBlock.gif            
for(int i=0;i<arrSection.Length-1;i++
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _FolderPath 
+= arrSection[i] + "/";
ExpandedSubBlockEnd.gif            }
InBlock.gif
InBlock.gif            
return _FolderPath;
ExpandedBlockEnd.gif        }

转载地址:http://irnzo.baihongyu.com/

你可能感兴趣的文章
Solr相关概念详解:SolrRequestHandler
查看>>
第五次作业--原型设计
查看>>
使用mysql_query()方法操纵数据库以及综合实例
查看>>
debian搭建本地镜像源
查看>>
Intro to ASP.NET MVC 一个简单的小程序
查看>>
利用adb安装apk
查看>>
mybatis
查看>>
app常见性能测试点
查看>>
[xsy2289]B
查看>>
基于内容的视频搜索引擎
查看>>
[ZZ] 皮克斯如何利用 GPU 来为艺术家提供其最需要的东西 —— 施展本领的时间...
查看>>
spring 依赖注入有什么好处
查看>>
Select count(*)、Count(1)、Count(0)的区别和执行效率比较
查看>>
Zookeeper的安装配置及基本开发
查看>>
杭电2098--分拆素数和
查看>>
hdoj2074 -- 叠筐
查看>>
Spring事务管理机制的实现原理-动态代理
查看>>
margin负值5种应用
查看>>
sql 语句
查看>>
Linux的基本原则
查看>>