wince獲取當前路徑

2021-06-09 07:28:53 字數 455 閱讀 4675

在evc下沒有getcurrentdirectory()這個函式能方便地獲取當前工作路徑,所以我們只能通過getmodulefilename()函式的返回值來獲取當前的工作路徑.

//szpath:獲取的當前工作路徑

void getcurrentdirectory(cstring &szpath)

const int nbufsize = 512;

tchar chbuf[nbufsize];

zeromemory(chbuf,nbufsize);

//獲取當前執行檔案的路徑。

getmodulefilename(null,chbuf,nbufsize);

tchar* pend = wcsrchr(chbuf,l'\\');

*pend = l'\0';

wcscat(chbuf,_t("\\image\\background.bmp"));

Wince 獲取當前路徑

在wince開發中,若要獲取程式的當前路徑,方法如下 m currentpath path.getdirectoryname assembly.getexecutingassembly getname codebase directory.getcurrentdirectory 方法在 net co...

wince獲取當前路徑

在wince開發中,若要獲取程式的當前路徑,方法如下 m currentpath path.getdirectoryname assembly.getexecutingassembly getname codebase directory.getcurrentdirectory 方法在 net co...

C C 獲取當前路徑

獲取當前工作目錄是使用函式 getcwd。cwd指的是 current working directory 這樣就好記憶了。函式說明 函式原型 char getcwd char buffer,int len 引數 buffer是指將當前工作目錄的絕對路徑copy到buffer所指的記憶體空間,len...