C WinForm程式設計獲取檔案物理路徑的方法

2022-10-06 16:00:18 字數 576 閱讀 9938

本文介紹如何www.cppcns.com在使用c#開發winform程式時,獲取程式檔案的物理路徑。這個物理路徑可以用於定位程式所在的目錄,從而進行日誌建立等擴充套件操作。

在c#開發時,可以很方便的獲取程式檔案的物理路徑。.net framework提供了乙個appdomain.currentdomain類,這個類有乙個靜態屬性,那就是basedirectory,它就儲存了程式檔案的物理路徑。我們可以使用tostring()的方法來將其讀出。

複製** **如下:

///

/// 返回程式路徑(即工作路徑)

///

/// 程式文www.cppcns.com件的物理路徑

publi static string getworkdir()

需要提醒大家注意的是,這個程式路徑,最後會有乙個反斜槓(\)。如果您要在它後程式設計客棧麵加其它子目錄或檔名,則不用再串乙個反斜槓了。

關於c#獲取程式檔案的物理路徑,本文就介紹這麼多,希望對您有所幫助,謝謝!

本文標題: c# winform程式設計獲取檔案物理路徑的方法

本文位址: /ruanjian/csharp/112026.html

C Winform中如何獲取檔案路徑

獲取檔名方法 用system.io.path.getfilename和system.io.path.getfilenamewithoutextension 無副檔名 的方法 獲取檔案路徑方法 獲取當前程序的完整路徑,包含檔名 程序名 string str this.gettype assembly....

C Winform獲取路徑

view code 1 c 獲取路徑 2string str1 process.getcurrentprocess mainmodule.filename 獲得當前執行的exe的檔名。3string str2 environment.currentdirectory 獲取和設定當前目錄的完全限定路徑...

C winform 程式設計例項

一,textbox實現autocomplete功能 原始碼 包含自動完成的字串集合 autocompletestringcollection strings new autocompletestringcollection strings.add a strings.add abc strings....