c 中獲取路徑方法

2021-12-30 00:28:45 字數 872 閱讀 3639

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

c 中獲取路徑的方法

分類一 要在c 中獲取路徑有好多方法,一般常用的有以下五種 獲取應用程式的當前工作目錄。string path1 system.io.directory.getcurrentdirectory messagebox.show 獲取應用程式的當前工作目錄 path1 獲取程式的基目錄。messageb...

C 中幾種獲取路徑方法

string str1 process.getcurrentprocess mainmodule.filename 可獲得當前執行的exe的檔名。string str2 environment.currentdirectory 獲取和設定當前目錄 即該程序從中啟動的目錄 的完全限定路徑。備註按照定義...

c 中各種獲取路徑方法

獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.currentdirectory 獲取應用程...