windows mobile获取当前路径

void GetCurrentDirectory(CString &strPath)

{
    wchar_t pBuf[
256];

    GetModuleFileName(NULL,pBuf,
sizeof(pBuf)/sizeof(wchar_t));
    strPath
=pBuf;
    strPath
= strPath.Left(strPath.ReverseFind('//') + 1);
}

你可能感兴趣的:(windows,null,mobile)