为了账号安全,请及时绑定邮箱和手机立即绑定

如何在.NET控制台应用程序中获取应用程序的路径?

如何在.NET控制台应用程序中获取应用程序的路径?

至尊宝的传说 2019-06-05 16:12:36
如何在.NET控制台应用程序中获取应用程序的路径?如何在控制台应用程序中找到应用程序的路径?在……里面Windows窗体,我可以用Application.StartupPath若要查找当前路径,但这在控制台应用程序中似乎不可用。
查看完整描述

3 回答

?
素胚勾勒不出你

TA贡献1827条经验 获得超9个赞

System.Reflection.Assembly.GetExecutingAssembly().Location1

把它和System.IO.Path.GetDirectoryName如果你想要的只是目录。

1根据Mindor先生的评论:
System.Reflection.Assembly.GetExecutingAssembly().Location返回当前正在执行的程序集所在的位置,在不执行时,该位置可能是也可能不是程序集所在的位置。在影子复制程序集的情况下,您将在临时目录中获得一个路径。System.Reflection.Assembly.GetExecutingAssembly().CodeBase将返回程序集的“永久”路径。


查看完整回答
反对 回复 2019-06-05
?
慕村9548890

TA贡献1884条经验 获得超4个赞

可以使用以下代码获取当前应用程序目录。

AppDomain.CurrentDomain.BaseDirectory


查看完整回答
反对 回复 2019-06-05
?
拉风的咖菲猫

TA贡献1995条经验 获得超2个赞

您有两个查找应用程序目录的选项,您选择的目录将取决于您的目的。


// to get the location the assembly is executing from

//(not necessarily where the it normally resides on disk)

// in the case of the using shadow copies, for instance in NUnit tests, 

// this will be in a temp directory.

string path = System.Reflection.Assembly.GetExecutingAssembly().Location;


//To get the location the assembly normally resides on disk or the install directory

string path = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;


//once you have the path you get the directory with:

var directory = System.IO.Path.GetDirectoryName(path);


查看完整回答
反对 回复 2019-06-05
  • 3 回答
  • 0 关注
  • 938 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信