DELSVN6

来源:互联网 发布:梦幻西游坐骑技能知乎 编辑:程序博客网 时间:2024/06/07 15:40

CString getCurrentDir()
{
    HMODULE hdAppExe = ::GetModuleHandle("condelsvn.exe");
    LPSTR lpAppFileName = new char[MAX_PATH];
    ::GetModuleFileName(hdAppExe, lpAppFileName, MAX_PATH);
    CFileFind *cFind = new CFileFind();
    CString sCurDir;
    if(cFind->FindFile(lpAppFileName))
    {
        cFind->FindNextFile();
        sCurDir = cFind->GetRoot() + "//";
    }
    delete cFind;
    return sCurDir;
}

原创粉丝点击