Work around partitioned images

Just scan for the magic BD
This commit is contained in:
Elliot Nunn 2019-08-18 21:36:48 +08:00
parent fb493a154f
commit 873cce2cc9
1 changed files with 7 additions and 0 deletions

View File

@ -121,6 +121,13 @@ class Volume(AbstractFolder):
self.name = 'Untitled'
def read(self, from_volume):
for i in range(0, len(from_volume), 512):
if from_volume[i+1024:i+1024+2] == b'BD':
if i: from_volume = from_volume[i:]
break
else:
raise ValueError('Magic number not found in image')
drSigWord, drCrDate, drLsMod, drAtrb, drNmFls, \
drVBMSt, drAllocPtr, drNmAlBlks, drAlBlkSiz, drClpSiz, drAlBlSt, \
drNxtCNID, drFreeBks, drVN, drVolBkUp, drVSeqNum, \