//獲取當前運行程序的目錄
Application.StartupPath;
Environment.CurrentDirectory;
//一個文件目錄
string filePath = "C:\\JiYF\\BenXH\\BenXHCMS.xml";
System.IO.Path.GetFullPath(filePath);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//-->C:\JiYF\BenXH\BenXHCMS.xml
System.IO.Path.GetDirectoryName(filePath);? ? ? ? ? ? ? ? ? ? ? ? ? ?//-->C:\JiYF\BenXH
System.IO.Path.GetFileName(filePath);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //-->BenXHCMS.xml
System.IO.Path.GetFileNameWithoutExtension(filePath);? ? ? ? //-->BenXHCMS
System.IO.Path.GetExtension(filePath);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //-->.xml
System.IO.Path.GetPathRoot(filePath);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//-->C:\
————————————————