//获取当前进程的完整路径,包含文件名(进程名)。
string str = this.GetType().Assembly.Location;
result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)
//获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名)。
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)
//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。
string str = System.Environment.CurrentDirectory;
result: X:\xxx\xxx (.exe文件所在的目录)
//获取当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
string str = System.AppDomain.CurrentDomain.BaseDirectory;
result: X:\xxx\xxx\ (.exe文件所在的目录+"\")
//获取和设置包含该应用程序的目录的名称。(推荐)
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
result: X:\xxx\xxx\ (.exe文件所在的目录+"\")
//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
string str = System.Windows.Forms.Application.StartupPath;
result: X:\xxx\xxx (.exe文件所在的目录)
//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
string str = System.Windows.Forms.Application.ExecutablePath;
result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)
//获取应用程序的当前工作目录(不可靠)。
string str = System.IO.Directory.GetCurrentDirectory();
result: X:\xxx\xxx (.exe文件所在的目录)

最新文章

  1. flash_header.S ( freescale imx6 board)
  2. mvc导出EXCEL
  3. Matlab tips and tricks
  4. 第八章 企业项目开发--分布式缓存memcached
  5. 呛口大话APP 移动端到底怎么玩
  6. SGU 531. Bonnie and Clyde 线段树
  7. NEC红外遥控协议理解与实现
  8. EBS 开发中如何动态启用和禁止请求(Current Request)的参数
  9. poj3177(边双连通分量+缩点)
  10. 自定义事件解决重复请求BUG
  11. Vue打包优化之分析工具webpack-bundle-analyzer
  12. mysql表类型导致的 setRollbackOnly() 事务不回滚
  13. SQL语句实例集合
  14. Windows Server 2008中使用计划任务定时执行BAT bat进行PHP脚本的执行
  15. Spring Boot 之 Profile 使用
  16. json与bson的区别
  17. SonarQube与Eclipse配合
  18. C#转成时间格式
  19. 安装SourceTree遇到的一个个坑
  20. C# 判断access建库、建表、文件是否存在等

热门文章

  1. 漏洞复现之Redis-rce
  2. 用php做管理后台
  3. Struts笔记5
  4. Git时间 —— 初始版本控制工具
  5. xsy 2412【BZOJ4569】【Scoi2016】萌萌哒
  6. 1144: 零起点学算法51——数组中删数(C语言)
  7. 从其他数据库迁移到MySQL及MySQL特点
  8. 血小板 live2d web使用
  9. linux安装imagemagick,centos安装imagemagick方法
  10. puppet工作原理及部署redis主从篇