1.獲取和設定當前目錄的完全限定路徑。
string str = system.environment.currentdirectory;
result: c:\***\***
2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。
result: c:\***\***
3.獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名。
string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;
result: c:\***\***\***.exe
4.獲取當前 thread 的當前應用程式域的基目錄,它由程式集衝突解決程式用來探測程式集。
result: c:\***\***\
5.獲取應用程式的當前工作目錄。
string str = system.io.directory.getcurrentdirectory();
result: c:\***\***
6.獲取和設定包含該應用程式的目錄的名稱。
result: c:\***\***\
7.獲取當前程序的完整路徑,包含檔名。
string str = this.gettype().assembly.location;
result: c:\***\***\***.exe
8.獲取啟動了應用程式的可執行檔案的路徑,包括可執行檔案的名稱。
result: c:\***\***\***.exe
此外,更多見的通過xml檔案配置具體的路徑來達到合理的規劃配置檔案的具體存放位置,如web中的配置檔案中的路徑。
string str1 =process.getcurrentprocess().mainmodule.filename;//可獲得當前執行的exe的檔名。
string str2=environment.currentdirectory;//獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑。
//備註 按照定義,如果該程序在本地或網路驅動器的根目錄中啟動,則此屬性的值為驅動器名稱後跟乙個尾部反斜槓(如「c:\」)。如果該程序在子目錄中啟動,則此屬性的值為不帶尾部反斜槓的驅動器和子目錄路徑(如「c:\mysubdirectory」)。
string str3=directory.getcurrentdirectory();//獲取應用程式的當前工作目錄。
C 獲取相對路徑的一些方法
以下是一些經常用到的獲取相對路徑的方法 1.獲取和設定當前目錄的完全限定路徑。string str system.environment.currentdirectory result c 2.獲取啟動了應用程式的可執行檔案的路徑,不包括可執行檔案的名稱。3.獲取應用程式的當前工作目錄。string...
C 相對路徑
一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...
c 獲取相對路徑
一 獲取當前檔案的路徑 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑,包括檔名。2.system.environment.currentdirectory 獲取和設定當前目錄 該程序從中啟動的...