• C#获取当前路径7中方法


    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.   
    16. StringBuilder str=new StringBuilder();  
    17. str.AppendLine("System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:" + path1);  
    18. str.AppendLine("System.Environment.CurrentDirectory:" + path2);  
    19. str.AppendLine("System.IO.Directory.GetCurrentDirectory():" + path3);  
    20. str.AppendLine("System.AppDomain.CurrentDomain.BaseDirectory:" + path4);  
    21. str.AppendLine("System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:" + path5);  
    22. str.AppendLine("System.Windows.Forms.Application.StartupPath:" + path6);  
    23. str.AppendLine("System.Windows.Forms.Application.ExecutablePath:" + path7);  
    24. string allPath = str.ToString();  
    25.   
    26. /*  输出结果 
    27.  *  System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName:D:workprjVP-VPlatformXmlAndXsdinReleaseXmlAndXsd.vshost.exe 
    28.     System.Environment.CurrentDirectory:D:workprjVP-VPlatformXmlAndXsdinRelease 
    29.     System.IO.Directory.GetCurrentDirectory():D:workprjVP-VPlatformXmlAndXsdinRelease 
    30.     System.AppDomain.CurrentDomain.BaseDirectory:D:workprjVP-VPlatformXmlAndXsdinRelease 
    31.     System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:D:workprjVP-VPlatformXmlAndXsdinRelease 
    32.     System.Windows.Forms.Application.StartupPath:D:workprjVP-VPlatformXmlAndXsdinRelease 
    33.     System.Windows.Forms.Application.ExecutablePath:D:workprjVP-VPlatformXmlAndXsdinReleaseXmlAndXsd.EXE     
    34.  */ 
  • 相关阅读:
    考虑浏览器兼容的文件上传(IE8不支持FormData)
    IDEA tomcat 部署WEB项目
    如何在springcloud分布式系统中实现分布式锁?
    ABAP DEMO33 选择周的搜索帮助
    ABAP函数篇1 日期函数
    ABAP函数篇2 测试DATE_CONVERT_TO_FACTORYDATE
    增强篇7 判断标准屏幕能否做屏幕增强
    增强篇6 CMOD增强删除
    ABAP DEMO 年月的搜索帮助
    HoloLens开发手记-配置开发环境 Install the tools
  • 原文地址:https://www.cnblogs.com/kuanglongblogs/p/6757095.html
Copyright © 2020-2023  润新知