您好,登錄后才能下訂單哦!
C#中怎么獲取相對路徑,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
C#獲取相對路徑1.
獲取和設置當前目錄的完全限定路徑。
string str = System.Environment.CurrentDirectory; Result: C:\xxx\xxx
C#獲取相對路徑2.
獲取啟動了應用程序的可執行文件的路徑,不包括可執行文件的名稱。
string str = System. Windows .Forms.Application.StartupPath; Result: C:\xxx\xxx
C#獲取相對路徑3.
獲取新的 Process 組件并將其與當前活動的進程關聯的主模塊的完整路徑,包含文件名。
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; Result: C:\xxx\xxx\xxx.exe
C#獲取相對路徑4.
獲取當前 Thread 的當前應用程序域的基目錄,它由程序集沖突解決程序用來探測程序集。
string str = System.AppDomain.CurrentDomain.BaseDirectory; Result: C:\xxx\xxx\
C#獲取相對路徑5.
獲取應用程序的當前工作目錄。
string str = System.IO.Directory.GetCurrentDirectory(); Result: C:\xxx\xxx
C#獲取相對路徑6.
獲取和設置包含該應用程序的目錄的名稱。
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; Result: C:\xxx\xxx\
C#獲取相對路徑7.
獲取當前進程的完整路徑,包含文件名。
string str = this.GetType().Assembly.Location; Result: C:\xxx\xxx\xxx.exe
C#獲取相對路徑8.
獲取啟動了應用程序的可執行文件的路徑,包括可執行文件的名稱。
string str = System. Windows .Forms.Application.ExecutablePath; Result: C:\xxx\xxx\xxx.exe
此外,更多見的通過XML文件配置具體的路徑來達到合理的規劃配置文件的具體存放位置,如WEB中的配置文件中的路徑。
關于C#中怎么獲取相對路徑問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。