mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 09:15:00 -06:00
Update to 7-Zip Version 21.04
- first test... no release!!!
This commit is contained in:
@@ -797,6 +797,18 @@ bool CPanel::IsArcFolder() const
|
||||
return GetFolderTypeID().IsPrefixedBy_Ascii_NoCase("7-Zip");
|
||||
}
|
||||
|
||||
bool CPanel::IsHashFolder() const
|
||||
{
|
||||
if (_folder)
|
||||
{
|
||||
NCOM::CPropVariant prop;
|
||||
if (_folder->GetFolderProperty(kpidIsHash, &prop) == S_OK)
|
||||
if (prop.vt == VT_BOOL)
|
||||
return VARIANT_BOOLToBool(prop.boolVal);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
UString CPanel::GetFsPath() const
|
||||
{
|
||||
if (IsFSDrivesFolder() && !IsDeviceDrivesPrefix() && !IsSuperDrivesPrefix())
|
||||
|
||||
Reference in New Issue
Block a user