mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
[SHELL32] Don't display .zip files in BrowseForFolder (#7437)
.zip files have both SFGAO_STREAM and SFGAO_FOLDER attributes set (https://devblogs.microsoft.com/oldnewthing/20171101-00/?p=97325) CORE-19751
This commit is contained in:
parent
abf3bde91b
commit
325d74c30f
|
@ -343,6 +343,15 @@ BrFolder_InsertItem(
|
|||
_In_ PCIDLIST_ABSOLUTE pidlParent,
|
||||
_In_ HTREEITEM hParent)
|
||||
{
|
||||
if (!(BrowseFlagsToSHCONTF(info->lpBrowseInfo->ulFlags) & SHCONTF_NONFOLDERS))
|
||||
{
|
||||
#ifdef BIF_BROWSEFILEJUNCTIONS
|
||||
if (!(info->lpBrowseInfo->ulFlags & BIF_BROWSEFILEJUNCTIONS))
|
||||
#endif
|
||||
if (SHGetAttributes(lpsf, pidlChild, SFGAO_STREAM) & SFGAO_STREAM)
|
||||
return NULL; // .zip files have both FOLDER and STREAM attributes set
|
||||
}
|
||||
|
||||
WCHAR szName[MAX_PATH];
|
||||
if (!BrFolder_GetName(lpsf, pidlChild, SHGDN_NORMAL, szName))
|
||||
return NULL;
|
||||
|
|
|
@ -624,6 +624,7 @@ HRESULT SHELL32_GetFSItemAttributes(IShellFolder * psf, LPCITEMIDLIST pidl, LPDW
|
|||
WCHAR szFileName[MAX_PATH];
|
||||
LPWSTR pExtension;
|
||||
BOOL hasName = _ILSimpleGetTextW(pidl, szFileName, _countof(szFileName));
|
||||
dwShellAttributes |= SFGAO_STREAM;
|
||||
|
||||
// Vista+ feature: Hidden files with a leading tilde treated as super-hidden
|
||||
// See https://devblogs.microsoft.com/oldnewthing/20170526-00/?p=96235
|
||||
|
@ -672,10 +673,6 @@ HRESULT SHELL32_GetFSItemAttributes(IShellFolder * psf, LPCITEMIDLIST pidl, LPDW
|
|||
dwShellAttributes |= (SFGAO_FILESYSANCESTOR | SFGAO_STORAGEANCESTOR);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
dwShellAttributes |= SFGAO_STREAM;
|
||||
}
|
||||
|
||||
if (dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
|
||||
dwShellAttributes |= SFGAO_HIDDEN | SFGAO_GHOSTED;
|
||||
|
|
Loading…
Reference in a new issue