博客
关于我
强烈建议你试试无所不能的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/

你可能感兴趣的文章
JAVA的起源和基础
查看>>
Android深度探索(卷1)HAL与驱动开发第六章总结
查看>>
lua序列化(支持循环引用)
查看>>
【转载】Java - Wait & Notify
查看>>
通过回调在fragment中获取activity的触摸事件
查看>>
安卓 内容提供者 sql 区别
查看>>
CSRF
查看>>
B-tree&B+tree
查看>>
jquery禁止点击事件,css禁止按钮
查看>>
C#Windows Form简易计算器实现(上)
查看>>
使用Matplotlab画图
查看>>
瑞星:周末拦截挂马网站数减少 新闻类网站占主打
查看>>
REST服务开发实战,互联网营销
查看>>
一起谈.NET技术,验证.NET强命称的思路和实例
查看>>
java springcloud版b2b2c社交电商spring cloud分布式微服务(十八)定时任务(Scheduling Tasks)...
查看>>
基于headless chrome的游戏资源下载实现 (初版)
查看>>
引用传递函数值
查看>>
第一周:JavaEE——课程目标
查看>>
ICP(迭代最近点)算法
查看>>
python 基础 切片 迭代 列表生成式
查看>>