我想创建一个转换文件的程序。我希望用户能够将可执行文件放在任何目录,当执行该程序(双击.exe),我希望程序处理当前文件夹内的所有文件,其中exe文件存在。程序如何确定当前正在执行的路径?
我尝试了System.Windows.Forms.Application.StartupPath,但这似乎是错误的方式。
什么好主意吗?
我想创建一个转换文件的程序。我希望用户能够将可执行文件放在任何目录,当执行该程序(双击.exe),我希望程序处理当前文件夹内的所有文件,其中exe文件存在。程序如何确定当前正在执行的路径?
我尝试了System.Windows.Forms.Application.StartupPath,但这似乎是错误的方式。
什么好主意吗?
当前回答
对于。net CORE使用System.AppContext.BaseDirectory
(替换AppDomain.CurrentDomain.BaseDirectory)
其他回答
在这种情况下,不应该使用directory . getcurrentdirectory(),因为当前目录可能与执行文件夹不同,特别是当您通过快捷方式执行程序时。
最好使用Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);为了你的目的。这将返回当前执行程序集所在的路径名。
虽然我建议的方法允许您区分执行程序集,入口程序集或任何其他加载程序集,正如Soner Gönül在他的回答中所说,
System.IO.Path.GetDirectoryName(Application.ExecutablePath);
也许也足够了。这就等于
System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
用这个,
var currentDirectory = System.IO.Directory.GetCurrentDirectory();
你也可以用这个。
var currentDirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
System.AppDomain.CurrentDomain.BaseDirectory
这将为您提供应用程序的运行目录。这甚至适用于web应用程序。然后你就可以拿到你的文件了。
如果你想要项目文件夹的路径,你也可以这样做:
DirectoryInfo di = new DirectoryInfo(".");
//OR
DirectoryInfo di = new DirectoryInfo("../../../");
Console.WriteLine(di.FullName);
结果: D: \开发\ c# \ ProjectFolder \ ProjectFolder \
试试这个:
System.Environment.CurrentDirectory