//获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名)。
string str1 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
System.Diagnostics.Debug.WriteLine (str1);
////// E:\学习工程\C#\c#教程\Test\Test\bin\Debug\Test.vshost.exe
//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。
string str2 = System.Environment.CurrentDirectory;
System.Diagnostics.Debug.WriteLine(str2);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug
//获取当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
string str3 = System.AppDomain.CurrentDomain.BaseDirectory;
System.Diagnostics.Debug.WriteLine(str3);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug\
//获取和设置包含该应用程序的目录的名称。
string str4 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
System.Diagnostics.Debug.WriteLine(str4);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug\
//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
string str5 = System.Windows.Forms.Application.StartupPath;
System.Diagnostics.Debug.WriteLine(str5);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug
//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
string str6 = System.Windows.Forms.Application.ExecutablePath;
System.Diagnostics.Debug.WriteLine(str6);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug\Test.EXE
//获取应用程序的当前工作目录(不可靠)。
string str7 = System.IO.Directory.GetCurrentDirectory();
System.Diagnostics.Debug.WriteLine(str7);
//////E:\学习工程\C#\c#教程\Test\Test\bin\Debug
相关文章
- 03-08SourceTree 这是一个无效源路径/URL的 解决方法
- 03-08如何找到调用当前方法的方法?
- 03-08jsp获取当前目录下的文件和目录,获取windows盘符
- 03-08.net 获取类型的Type类型的几种方法
- 03-08flink on yarn 用户代码获取keytab本地文件和principal的方法
- 03-08关于在Servelet中如何获取当前时间的操作
- 03-08Hutool中DateUtil常用方法(格式化日期Date2Str、Str2Date、获取一天的开始时间和结束时间、日期时间差)
- 03-08jQuery、JS和jQuery Easyui三种不同获取值的方法
- 03-08移动端的touchstart,touchmove,touchend事件中的获取当前touch位置
- 03-08SpringBoot项目获取ApplicationContext来GetBean的方法