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);
}
© 轉載需附帶本文連結,依 CC BY-NC-SA 4.0 釋出。