在C#中,你可以使用System.IO.Path
和System.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);
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c# button的访问键如何设置