博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于程序路径Path.Combine以及AppDomain.CurrentDomain.BaseDirectory
阅读量:5997 次
发布时间:2019-06-20

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

 

关于程序路径

LucenePath:@(System.Configuration.ConfigurationManager.AppSettings["LucenePath"])
Path.Combine(相对目录)@(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "lucene_index"))
Path.Combine(绝对目录)@(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, System.Configuration.ConfigurationManager.AppSettings["LucenePath"]))
*@@*输出结果:LucenePath:C:\inetpub\wwwroot\www_domain_net\bin\App_Data\lucene_indexPath.Combine(相对目录)H:\wwwroot\domain\domain.Web\lucene_indexPath.Combine(绝对目录)C:\inetpub\wwwroot\www_domain_net\bin\App_Data\lucene_index*@

 

LucenePath:@(System.Configuration.ConfigurationManager.AppSettings["LucenePath"])<br />Path.Combine(相对目录)@(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "lucene_index"))<br />Path.Combine(绝对目录)@(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, System.Configuration.ConfigurationManager.AppSettings["LucenePath"]))<br />*@

@*输出结果:LucenePath:C:\inetpub\wwwroot\www_haolizi_net\bin\App_Data\lucene_indexPath.Combine(相对目录)H:\wwwroot\HaoLiZi\HaoLiZi.Web\lucene_indexPath.Combine(绝对目录)C:\inetpub\wwwroot\www_haolizi_net\bin\App_Data\lucene_index*@

转载于:https://www.cnblogs.com/duanweishi/p/5408312.html

你可能感兴趣的文章
poj 3370 鸽笼原理知识小结
查看>>
linux kernel启动流程
查看>>
Python之控制台输入密码的方法
查看>>
.net下二进制序列化的格式分析[转]
查看>>
使用Hive的web界面:HWI
查看>>
C#学习笔记—控制台与消息框输出
查看>>
MVC单元测试,使用Repository模式、Ninject、Moq
查看>>
C#各种异常处理方式
查看>>
AngularJS中使用$http对MongoLab数据表进行增删改查
查看>>
推荐系统
查看>>
[MySQL]快速解决"is marked as crashed and should be repaired"故障
查看>>
(DT系列四)驱动加载中, 如何取得device tree中的属性
查看>>
游戏开发-技术
查看>>
cmake和make区别
查看>>
C#中标准Disp“.NET技术”ose模式的实现
查看>>
FastJson、Jackson、Gson进行Java对象转换Json的细节处理
查看>>
[转]Android中在SurfaceView上高效绘图
查看>>
flash 观察帧频率的工具 fps counter
查看>>
Quartz2D简单绘制之矩形&椭圆
查看>>
VIC流程
查看>>