獲取當前工作目錄是使用函式:getcwd。cwd指的是「current working directory」,這樣就好記憶了。
函式說明:
函式原型:char* getcwd(char* buffer, int len);
引數:buffer是指將當前工作目錄的絕對路徑copy到buffer所指的記憶體空間, len是buffer的長度。
返回值:獲取成功則返回當前工作目錄(絕對路徑),失敗則返回false(即null)。
該函式所屬標頭檔案為
#include #include int main()
else
}
執行後可返回工作目錄的絕對路徑………… C C 獲取當前路徑
獲取當前工作目錄是使用函式 getcwd。cwd指的是 current working directory 這樣就好記憶了。函式說明 函式原型 char getcwd char buffer,int len 引數 buffer是指將當前工作目錄的絕對路徑copy到buffer所指的記憶體空間,len...
wince獲取當前路徑
在evc下沒有getcurrentdirectory 這個函式能方便地獲取當前工作路徑,所以我們只能通過getmodulefilename 函式的返回值來獲取當前的工作路徑.szpath 獲取的當前工作路徑 void getcurrentdirectory cstring szpath const ...
C 獲取當前路徑
c 獲取當前路徑的7種方法 c 獲取當前路徑的方法如下 1.system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取模組的完整路徑。2.system.environment.currentdirectory 獲取和設定當前...