Add support for IOMEGA Clik! (aka PocketZip)

This commit is contained in:
2016-12-10 04:04:10 +00:00
parent cf21ccb2df
commit 5be233268b
2 changed files with 8 additions and 0 deletions

View File

@@ -70,6 +70,12 @@ namespace DiscImageChef.CommonTypes
return MediaType.Unknown;
}
if(vendor.ToLowerInvariant().StartsWith("iomega") &&
(model.ToLowerInvariant().StartsWith("clik") ||
model.ToLowerInvariant().StartsWith("pocketzip")) &&
blockSize == 512 && blocks == 78882)
return MediaType.PocketZip;
if(model.ToLowerInvariant().StartsWith("zip"))
{
if(blockSize == 512)