c 中獲取路徑的方法

2021-05-02 04:48:05 字數 709 閱讀 3672

【分類一】要在c#中獲取路徑有好多方法,一般常用的有以下五種:

//獲取應用程式的當前工作目錄。

string path1 = system.io.directory.getcurrentdirectory();            

messagebox.show("獲取應用程式的當前工作目錄:" + path1);

//獲取程式的基目錄。

messagebox.show("獲取程式的基目錄:" + path2);

messagebox.show("獲取和設定包括該應用程式的目錄的名稱:" + path3);

//獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。

messagebox.show("獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱:" + path4);

messagebox.show("獲取啟動了應用程式的可執行檔案的路徑及檔名:" + path5);

【分類二】

獲取應用程式的當前工作目錄。 

string   path   =   system.io.directory.getcurrentdirectory();

c 中獲取路徑方法

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

C 中幾種獲取路徑方法

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

c 中各種獲取路徑方法

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