// 获取程序的基目录。

System.AppDomain.CurrentDomain.BaseDirectory

// 获取模块的完整路径。

System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName

// 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。

System.Environment.CurrentDirectory

// 获取应用程序的当前工作目录。

System.IO.Directory.GetCurrentDirectory()

// 获取和设置包括该应用程序的目录的名称。

System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase

// 获取启动了应用程序的可执行文件的路径。

System.Windows.Forms.Application.StartupPath

// 获取启动了应用程序的可执行文件的路径及文件名

System.Windows.Forms.Application.ExecutablePath

C# WinForm中AppDomain.CurrentDomain.BaseDirectory与Application.StartupPath的区别示例如下:

private void Frm_Server_Load(object sender, EventArgs e)

{

MessageBox.Show(AppDomain.CurrentDomain.BaseDirectory);

MessageBox.Show(Application.StartupPath );

}

说明:

1.   AppDomain.CurrentDomain.BaseDirectory 返回结果为: D:\mycode\

Application.StartupPath 返回结果为: D:\mycode

2.  Application.StartupPath 只能用于WinForm窗体中,而AppDomain.CurrentDomain.BaseDirectory既可以用于WinForm窗体中,也可以用于类库DLL文件中.

注意下面:

string   str1   =Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe的文件名。

string   str2=Environment.CurrentDirectory;//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。

//备注   按照定义,如果该进程在本地或网络驱动器的根目录中启动,则此属性的值为驱动器名称后跟一个尾部反斜杠(如“C:\”)。如果该进程在子目录中启动,则此属性的值为不带尾部反斜杠的驱动器和子目录路径(如“C:\mySubDirectory”)。

string   str3=Directory.GetCurrentDirectory();//获取应用程序的当前工作目录。

string   str4=AppDomain.CurrentDomain.BaseDirectory;//获取基目录,它由程序集冲突解决程序用来探测程序集。

string   str5=Application.StartupPath;//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。

string   str6=Application.ExecutablePath;//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。  string   str7=AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//获取或设置包含该应用程序的目录的名称。

最新文章

  1. 前端读取Excel报表文件
  2. 模拟ajax的同异步
  3. linux sort,uniq,cut,wc,tr命令详解
  4. text属性
  5. EntityFramework_MVC4中EF5 新手入门教程之七 ---7.通过 Entity Framework 处理并发
  6. c++地址对齐
  7. 变形课hd1181(DFS)
  8. linux 启动 oracle数据库
  9. java.lang.NullPointerException错误分析
  10. CSharp设计模式读书笔记(22):策略模式(学习难度:★☆☆☆☆,使用频率:★★★★☆)
  11. ie8下下拉菜单文字为空
  12. Android系统--输入系统(十一)Reader线程_简单处理
  13. nginx源码分析——线程池
  14. EsRejectedExecutionException排错与线程池类型
  15. 简易发号SQL,可用于生成指定前缀自增序列,如订单号,生成优惠券码等
  16. leetcode — jump-game-ii
  17. Django--ORM 多表查询
  18. MVVM 简化的Messager类
  19. Android 自定义 ListView 显示网络上 JSON 格式歌曲列表
  20. 给你出道题---N个数字的静态决策区分问题

热门文章

  1. webstrom 10 注册码
  2. Swift 4.0 正式发布,更快更兼容更好用
  3. Scene is unreachable due to lack of entry points and does not have an identifier for runtime access via -instantiateViewControllerWithIdentifier解决办法
  4. Flume启动报错[ERROR - org.apache.flume.sink.hdfs. Hit max consecutive under-replication rotations (30); will not continue rolling files under this path due to under-replication解决办法(图文详解)
  5. CF581D Three Logos 暴力
  6. http 与 TCP 与 socket 定义,区别
  7. TCP的粘包问题
  8. Observable Flowable Test
  9. Linux 网络配置及常用服务配置(Redhat 6)
  10. Django视图系统