[SHELLEXT][ZIPFLDR] SendTo Zip compressed folder needs notification

CORE-16818
This commit is contained in:
Katayama Hirofumi MZ 2020-04-10 18:16:31 +09:00
parent 622c7ed609
commit 1871b2bd89

View file

@ -353,6 +353,12 @@ unsigned CZipCreatorImpl::JustDoIt()
MessageBoxW(NULL, strText, strTitle, MB_ICONERROR);
}
else
{
WCHAR szFullPath[MAX_PATH];
GetFullPathNameW(strZipName, _countof(szFullPath), szFullPath, NULL);
SHChangeNotify(SHCNE_CREATE, SHCNF_PATHW, szFullPath, NULL);
}
return err;
}