//获取新的 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
C#获取当前路径的方法
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:golang命令行库cobra
下一篇:.NET Core:处理全局异常
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C#中获取程序当前路径的方法
//获取当前进程的完整路径,包含文件名(进程名)。string str = this.GetType().Assem
操作系统 文件名 应用程序 可执行文件 -
ASP.Net 获取当前路径与C# 获取当前路径的不同
asp.net 获取当前项目路径Asp.net 2010-07-08 10:53:45 阅读17 评论0 字号:大中小方法
asp.net c# winform string system -
C#获取当前路径
//获取包含清单的已加载文件的路径或 UNC 位置。 public static string sApplicationPath =
文件名 应用程序 可执行文件 字符串 相对路径