zoukankan      html  css  js  c++  java
  • 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    

    .Net Framework中System.IO.Directory.GetCurrentDirectory()方法用于获得应用程序当前工作目录。如果使用此方法获得应用程序所在的目录,应该注意:System.IO.Directory.GetCurrentDirectory()方法获得的目录路径随着OpenFileDialog、SaveFileDialog等对象所确定的目录而改变(切换工作目录)。每打开一次文件夹或者使用资源管理器查看一下文件,都会更改此方法获得的值。

    而System.Windows.Forms.Application.StartupPath或System.AppDomain.CurrentDomain.BaseDirectory可以获得应用程序运行所在的目录,它是不随你打开的文件夹而变的。只跟应用程序运行目录有关,其值等于应用程序启动的根目录。例如你安装了程序在了C:Program Files程序文件夹  的位置下,那么他就是System.Windows.Forms.Application.StartupPath的值。

  • 相关阅读:
    02.JSP内置对象
    01.JSP基础语法
    Spring第二天:Spring的IOC的注解方式、Spring的AOP开发(XML)
    Spring第一天:Spring的概述、SpringIOC入门(XML)、Spring的Bean管理、Spring属性注入
    Struts2学习第4天--拦截器
    Struts2学习第3天--OGNL、EL、值栈
    Struts2学习第2天--Struts2的Servlet的API的访问 Struts2的结果页面的配置 Struts2的数据的封装(包括复杂类型)
    Struts2学习第一天--Struts2的概述、Struts2的入门、Struts2常见的配置、Struts2的Action的编写
    Hibernate学习第4天--HQL——QBC查询详解,抓取策略优化。
    Hibernate学习第三天(2)(多对多关系映射)
  • 原文地址:https://www.cnblogs.com/shiyh/p/10573405.html
Copyright © 2011-2022 走看看