Adding check for Windows version and alternate flags for Windows Vista/7

This commit is contained in:
Tyler Gibson 2015-12-24 03:54:50 +00:00
parent 9e9d74a5a4
commit 2d0e1c313a

View file

@ -340,13 +340,26 @@ bool MoveItemToTrash(const base::FilePath& path) {
// Elevation prompt enabled for UAC protected files. This overrides the // Elevation prompt enabled for UAC protected files. This overrides the
// SILENT, NO_UI and NOERRORUI flags. // SILENT, NO_UI and NOERRORUI flags.
if (base::win::GetVersion() >= base::win::VERSION_WIN8) {
// Windows 8 introduces the flag RECYCLEONDELETE and deprecates the
// ALLOWUNDO in favor of ADDUNDORECORD.
if (FAILED(pfo->SetOperationFlags(FOF_NO_UI | if (FAILED(pfo->SetOperationFlags(FOF_NO_UI |
FOF_ALLOWUNDO | FOFX_ADDUNDORECORD |
FOF_NOERRORUI | FOF_NOERRORUI |
FOF_SILENT | FOF_SILENT |
FOFX_SHOWELEVATIONPROMPT | FOFX_SHOWELEVATIONPROMPT |
FOFX_RECYCLEONDELETE))) FOFX_RECYCLEONDELETE)))
return false; return false;
} else {
// For Windows 7 and Vista, RecycleOnDelete is the default behavior.
if (FAILED(pfo->SetOperationFlags(FOF_NO_UI |
FOF_ALLOWUNDO |
FOF_NOERRORUI |
FOF_SILENT |
FOFX_SHOWELEVATIONPROMPT)))
return false;
}
// Create an IShellItem from the supplied source path. // Create an IShellItem from the supplied source path.
base::win::ScopedComPtr<IShellItem> delete_item; base::win::ScopedComPtr<IShellItem> delete_item;