1.获取模块的完整路径。
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
2.获取和设置当前目录(该进程从中启动的目录)的完全限定目录。
System.Environment.CurrentDirectory
3.获取应用程序的当前工作目录。(不稳定)
System.IO.Directory.GetCurrentDirectory()
4.获取程序的基目录。
System.AppDomain.CurrentDomain.BaseDirectory
5.获取和设置包括该应用程序的目录的名称。
System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase
6.获取启动了应用程序的可执行文件的路径。效果和2、5一样。只是5返回的字符串后面多了一个”\”而已
System.Windows.Forms.Application.StartupPath
7.获取启动了应用程序的可执行文件的路径及文件名,效果和1一样。
System.Windows.Forms.Application.ExecutablePath
C#获取当前路径方法2可以应用于控制台应用程序,WinForm应用程序,Windows服务,方法1可以应用于Web应用程序,方法3都可以应用。