参考链接:https://www.cnblogs.com/youmingkuang/p/11719915.html

    1. //获取模块的完整路径。
    2. string path1 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
    3. //获取和设置当前目录(该进程从中启动的目录)的完全限定目录
    4. string path2 = System.Environment.CurrentDirectory;
    5. //获取应用程序的当前工作目录
    6. string path3 = System.IO.Directory.GetCurrentDirectory();
    7. //获取程序的基目录
    8. string path4 = System.AppDomain.CurrentDomain.BaseDirectory;
    9. //获取和设置包括该应用程序的目录的名称
    10. string path5 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
    11. //获取启动了应用程序的可执行文件的路径
    12. string path6 = System.Windows.Forms.Application.StartupPath;
    13. //获取启动了应用程序的可执行文件的路径及文件名
    14. string path7 = System.Windows.Forms.Application.ExecutablePath;
    15. StringBuilder str=new StringBuilder();
    16. str.AppendLine("System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:" + path1);
    17. str.AppendLine("System.Environment.CurrentDirectory:" + path2);
    18. str.AppendLine("System.IO.Directory.GetCurrentDirectory():" + path3);
    19. str.AppendLine("System.AppDomain.CurrentDomain.BaseDirectory:" + path4);
    20. str.AppendLine("System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:" + path5);
    21. str.AppendLine("System.Windows.Forms.Application.StartupPath:" + path6);
    22. str.AppendLine("System.Windows.Forms.Application.ExecutablePath:" + path7);
    23. string allPath = str.ToString();
    24. /* 输出结果
    25. * System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\XmlAndXsd.vshost.exe
    26. System.Environment.CurrentDirectory:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release
    27. System.IO.Directory.GetCurrentDirectory():D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release
    28. System.AppDomain.CurrentDomain.BaseDirectory:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\
    29. System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\
    30. System.Windows.Forms.Application.StartupPath:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release
    31. System.Windows.Forms.Application.ExecutablePath:D:\work\prj\VP-VPlatform\XmlAndXsd\bin\Release\XmlAndXsd.EXE