不废话,上代码

    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;//选择的文件夹路径  

相关文章:

  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2023-03-15
  • 2021-10-10
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2018-08-15
相关资源
相似解决方案