C#中獲取當前路徑的幾種方法

weixin_34120274發表於2008-12-31
要在c#中獲取路徑有好多方法,一般常用的有以下五種:
            //獲取應用程式的當前工作目錄。
            String path1 = System.IO.Directory.GetCurrentDirectory();            
            MessageBox.Show("獲取應用程式的當前工作目錄:" + path1);
            //獲取程式的基目錄。
            String path2 = System.AppDomain.CurrentDomain.BaseDirectory;        
            MessageBox.Show("獲取程式的基目錄:" + path2);
            //獲取和設定包括該應用程式的目錄的名稱。
            String path3 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;            
            MessageBox.Show("獲取和設定包括該應用程式的目錄的名稱:" + path3);
            //獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。
            String path4 = System.Windows.Forms.Application.StartupPath;           
            MessageBox.Show("獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱:" + path4);
            //獲取啟動了應用程式的可執行檔案的路徑及檔名
            String path5 = System.Windows.Forms.Application.ExecutablePath;           
            MessageBox.Show("獲取啟動了應用程式的可執行檔案的路徑及檔名:" + path5);

相關文章