CString COptionDlg::SelectDirectory(CString currentPath, CString caption){ BROWSEINFO info; wchar_t szBuffer[MAX_PATH]; ::ZeroMemory(&info, sizeof(BROWSEINFO)); ::ZeroMemory(szBuffer, MAX_PATH); info.hwndOwner = GetSafeHwnd(); info.lpszTitle = caption; info.ulFlags = BIF_NEWDIALOGSTYLE | BIF_EDITBOX | BIF_RETURNONLYFSDIRS; LPITEMIDLIST pItemIdList = ::SHBrowseForFolder(&info); if (!pItemIdList) ..