C#中取程序運行目錄和某文件所在目錄的方法

// 程序運行路徑,帶\。
public static string GetPath()
{
    string str = System.Windows.Forms.Application.ExecutablePath;
    return str.Substring(0, str.LastIndexOf('\\') + 1);
}
// 獲得指定文件的路徑,帶\。
public static string GetPath(string str)
{
    return str.Substring(0, str.LastIndexOf('\\') + 1);
}
当前页阅读量为: