我知道在我的代码执行的同一目录中找到了一些文件。我需要找到它们并传递给另一种方法:
MyLib.dll
Target1.dll
Target2.dll
Foo(new[] { "..\\..\\Target1.dll", "..\\..\\Target2.dll" });
所以我打电话给System.IO.Directory.GetFiles(path, "*.dll")
。但现在我需要知道这条路:
string path = new FileInfo((Assembly.GetExecutingAssembly().Location)).Directory.FullName)
但还有更短路吗?
答案 0 :(得分:6)
您可以尝试Environment.CurrentDirectory
属性。请注意,根据应用程序的类型(控制台,WinForms,ASP.NET,Windows服务,...)及其运行方式,这可能会有不同的行为。
答案 1 :(得分:2)
Environment.CurrentDirectory返回当前目录,而不是执行代码所在的目录。如果您使用Directory.SetCurrentDirectory,或者如果您使用设置目录的快捷方式启动程序,则这将不是您要查找的目录。
坚持原始解决方案。使用属性隐藏实现(并使其更短):
private DirectoryInfo ExecutingFolder
{
get
{
return new DirectoryInfo (
System.IO.Path.GetDirectoryName (
System.Reflection.Assembly.GetExecutingAssembly().Location));
}
}