C# 获取程序路径

时间:2021-12-12 08:23:50

1.System.Reflection.Assembly.GetExecutingAssembly().Location

获取当前工程,比如DLL或者应用程序的目录。因为程序调用的DLL,有可能在任意一个文件夹,这方法能获取当前调用的DLL对应的路径。

2.Application.Current.StartupUri和Application.StartupPath

都是获取程序启动路径,,区别是基类System.Windows和System.Windows.Forms

3.System.AppDomain.CurrentDomain.BaseDirectory

获取程序的基目录

以上是个人常用到的路径,完整的路径获取,可以参考其它博客: