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

本文共 712 字,大约阅读时间需要 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        }

转载于:https://www.cnblogs.com/minbear/archive/2004/08/18/34600.html

你可能感兴趣的文章
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
Extjs6 经典版 combo下拉框数据的使用及动态传参
查看>>
【NodeJS】http-server.cmd
查看>>
研磨JavaScript系列(五):奇妙的对象
查看>>
面试题2
查看>>
selenium+java iframe定位
查看>>
P2P综述
查看>>
第五章 如何使用Burp Target
查看>>
Sprint阶段测试评分总结
查看>>
sqlite3经常使用命令&amp;语法
查看>>
linux下编译openjdk8
查看>>
【python】--迭代器生成器装饰器
查看>>