首页 > 代码库 > MFC 打开一个文件夹

MFC 打开一个文件夹

CString m_FileDir;
    BROWSEINFO bi;
    ZeroMemory(&bi, sizeof(BROWSEINFO));
    bi.hwndOwner = m_hWnd;
    bi.ulFlags = BIF_RETURNONLYFSDIRS;
    LPITEMIDLIST pidl = SHBrowseForFolder(&bi);
    BOOL bRet = FALSE;
    TCHAR szFolder[MAX_PATH*2];
    szFolder[0] = _T(\0);
    if (pidl)
    {
        if (SHGetPathFromIDList(pidl, szFolder))
            bRet = TRUE;
        IMalloc *pMalloc = NULL;
        if (SUCCEEDED(SHGetMalloc(&pMalloc)) && pMalloc)
        {
            pMalloc->Free(pidl);
            pMalloc->Release();
        }
    }
    m_FileDir = szFolder;//选择的文件夹路径
    //CEdit* cfolder;
    //cfolder = (CEdit*) GetDlgItem(flidersdit);
    SetDlgItemText(IDC_EDIT_RESULT2,m_FileDir);
    //cfolder->SetWindowText(szFolder);
    

 

MFC 打开一个文件夹