c#如何获取当前程序的路径

avatar
作者
猴君
阅读量:0

在C#中,你可以使用System.IO.PathSystem.Reflection命名空间来获取当前程序的路径。下面是一个示例代码:

using System; using System.IO; using System.Reflection;  class Program {     static void Main()     {         // 获取当前执行程序的路径         string currentPath = Assembly.GetExecutingAssembly().Location;                  // 输出结果         Console.WriteLine("当前程序的路径: " + currentPath);     } } 

这段代码将会输出当前正在运行的程序的完整路径。如果你只需要程序所在的目录,可以使用Path.GetDirectoryName()方法:

string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); Console.WriteLine("当前程序所在的目录: " + currentDir); 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!