程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#中獲取路徑方法

c#中獲取路徑方法

編輯:C#入門知識

要在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);

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved