c#如何獲取當(dāng)前程序的路徑

c#
小億
85
2024-09-05 04:54:57

在C#中,你可以使用System.IO.PathSystem.Reflection命名空間來(lái)獲取當(dāng)前程序的路徑。下面是一個(gè)示例代碼:

using System;
using System.IO;
using System.Reflection;

class Program
{
    static void Main()
    {
        // 獲取當(dāng)前執(zhí)行程序的路徑
        string currentPath = Assembly.GetExecutingAssembly().Location;
        
        // 輸出結(jié)果
        Console.WriteLine("當(dāng)前程序的路徑: " + currentPath);
    }
}

這段代碼將會(huì)輸出當(dāng)前正在運(yùn)行的程序的完整路徑。如果你只需要程序所在的目錄,可以使用Path.GetDirectoryName()方法:

string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
Console.WriteLine("當(dāng)前程序所在的目錄: " + currentDir);

0