本章讲述: C#获取.exe文件的运行目录的方法;WPF中获取.exe文件的运行路径:System.Windows.Forms.Application.StartupPath
引用: WindowsBase 、System.Windows.Forms
**1.**获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
string str = System.Windows.Forms.Application.StartupPath; result: X:/xxx/xxx (.exe文件所在的目录)
2、 获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
string str = System.Windows.Forms.Application.ExecutablePath; result: X:/xxx/xxx/xxx.exe (.exe文件所在的目录+.exe文件名)
3、 获取和设置包含该应用程序的目录的名称。
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; result: X:/xxx/xxx/ (.exe文件所在的目录+"/")
注意事项: System.Environment.CurrentDirectory的含义是获取或设置当前工作路径,而Application.StartupPath是获取程序启动路径,表面上看二者没什么区别,但实际上区别大得很。 先说前者:比如说你程序放在桌面上启动,但是中间你用了一个OpenFileDialog打开了E盘名为Working的文件夹下的某一个文件,那么CurrentDirectory就变成E:\Working了,所以如果你想再获取程序启动文件夹的某一个文件就没用了,但是Application.StartupPath就不会这样了,无论你中间打开了哪个盘的文件,启动路径都是在桌面那里,一直不会变。