当前位置:  开发笔记 > 编程语言 > 正文

确定应用程序根目录的最佳方法是什么?

如何解决《确定应用程序根目录的最佳方法是什么?》经验,为你挑选了3个好方法。

我需要在我的应用程序根目录中获取所有dll.最好的方法是什么?

string root = Application.StartupPath;

要么,

string root = new FileInfo(Assembly.GetExecutingAssembly().Location).FullName;

在那之后,

Directory.GetFiles(root, "*.dll");

哪种方式更好?还有更好的方法吗?



1> Greg Dean..:

AppDomain.CurrentDomain.BaseDirectory 我是这样做的.

然而:

Application.StartupPath 获取可执行文件的目录

AppDomain.BaseDirectory 获取用于解析程序集的目录

由于它们可能不同,您可能希望使用Application.StartupPath,除非您关心程序集解析.


如果在exe快捷方式中设置了ApplicationStartupPath,则它将受"工作目录"的影响,或者该进程从其他应用程序启动.直到很久以后我才意识到这一点,这让我花了几天的不眠之夜来解决出错的问题.

2> Rob Prouse..:

这取决于.如果您想要启动应用程序的EXE目录,那么您的两个示例中的任何一个都可以使用.但请记住,.NET非常灵活,可能是另一个应用程序链接到您的EXE并且正在调用它,可能来自另一个目录.

这种情况不会经常发生,如果有的话,你可能会写,但这是可能的.因此,我更喜欢指定我感兴趣的程序集并从中获取目录.然后我知道我将所有DLL都放在与特定程序集相同的目录中.例如,如果您的应用程序MyApp.exe中有一个类MyApp.MyClass,那么您可以这样做;

string root = string.Empty;
Assembly ass = Assembly.GetAssembly( typeof( MyApp.MyClass ) );
if ( ass != null )
{
   root = ass.Location;
}


好的变量命名
我特别喜欢确定我的屁股.位置; D.
它需要两只手.
if(ass!= null)!!!! 这总是如此.:)我们怎么能没有屁股生活!
谁的手......?

3> 小智..:

这是一个老问题,但我总是习惯使用:

Environment.CurrentDirectory = Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName);

但是,看看这里的解决方案,我认为需要做一些简单的测试:

var r = new List();
var s = Stopwatch.StartNew();

s.Restart();
string root1 = Application.StartupPath;
r.Add(s.ElapsedTicks);

s.Restart();
string root2 = Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName);
r.Add(s.ElapsedTicks);

s.Restart();
string root3 = Path.GetDirectoryName(new FileInfo(Assembly.GetExecutingAssembly().Location).FullName);
r.Add(s.ElapsedTicks);

s.Restart();
string root4 = AppDomain.CurrentDomain.BaseDirectory;
r.Add(s.ElapsedTicks);

s.Restart();
string root5 = Path.GetDirectoryName(Assembly.GetAssembly( typeof( Form1 ) ).Location);
r.Add(s.ElapsedTicks);

滴答结果如下:

49

306

166

26

201

所以似乎AppDomain.CurrentDomain.BaseDirectory是要走的路.

推荐阅读
N个小灰流_701
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有