以下是一些經常用到的獲取相對路徑的方法
1.獲取和設定當前目錄的完全限定路徑。
string str = system.environment.currentdirectory; result: c:******
2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。
3.獲取應用程式的當前工作目錄。
string str = system.io.directory.getcurrentdirectory(); result: c:******
4.獲取和設定包含該應用程式的目錄的名稱。
5.獲取當前程序的完整路徑,包含檔名。
string str = this.gettype().assembly.location; result: c:*********.exe
6.獲取啟動了應用程式的可執行檔案的路徑,包括可執行檔案的名稱。 C 獲取相對路徑的方法
c 獲取相對路徑1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c c 獲取相對路徑2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。c 獲取相對路徑3.獲取新的 process 元件並...
c 獲取相對路徑
一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...
c 獲取相對路徑
一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...