mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHELLEXT][ZIPFLDR] SendTo Zip compressed folder needs notification
CORE-16818
This commit is contained in:
parent
622c7ed609
commit
1871b2bd89
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue