Announcements

Between mid-October and November, the content on AREA will be relocated to the Autodesk Community M&E Hub and the Autodesk Community Gallery. Learn more HERE.

Archive Scene Error - Zip64 Extensions?

Archive Scene Error - Zip64 Extensions?

laura.jolly
Enthusiast Enthusiast
3,832 Views
11 Replies
Message 1 of 12

Archive Scene Error - Zip64 Extensions?

laura.jolly
Enthusiast
Enthusiast

I am trying to archive a scene to pass on for checks and am receiving an error that says "Zipfile size would require ZIP64 Extensions" and then fails to archive my scene, probably because it's too large.

 

How and where do I get the extensions I need for this? Can I get around this issue? There is literally zero documentation about this that I've found. I would appreciate any help, as this is a very time sensitive matter. Thank you in advance!

0 Likes
3,833 Views
11 Replies
Replies (11)
Message 2 of 12

Nadja.Bueckmann
Alumni
Alumni

Hi @laura.jolly,

 

can you tell me how big your scene is when it is not zipped yet?

On which OS are you running Maya?

 

Best, Nadja



Nadja Bueckmann

Technical Support Specialist – M&E (3ds Max, Maya)

0 Likes
Message 3 of 12

laura.jolly
Enthusiast
Enthusiast

Hello, the scene file I'm trying to archive is just under a gig big, but may be trying to archive  up to 10 gigs worth of attached data. I am also using Windows 10 on a 64 bit computer for this archive. Thank you for your patience and help!

0 Likes
Message 4 of 12

laura.jolly
Enthusiast
Enthusiast

Hello are you still available to help?

0 Likes
Message 5 of 12

Anonymous
Not applicable

Did you ever get an answer to this question.  I'm having the exact same issue. 

0 Likes
Message 6 of 12

laura.jolly
Enthusiast
Enthusiast

No, I never got a fix on this issue, sorry. :C

0 Likes
Message 7 of 12

no4access
Participant
Participant

hi there i did some research i found that the limitation  inside the python script it self its not allow to archive the files that to large i found some code but i am not coder so i didn't get chance to get it work may be its help

 

check this link:

http://stackoverflow.com/questions/29830531/python-using-zip64-extensions-when-compressing-large-fil...

Message 8 of 12

Anonymous
Not applicable

Hello,
We had the same issue yesterday (win10 64bit, Maya 2016).

In order to try if the allowZip64 flag would fix the issue we have modified the python file:
Maya2016\Python\Lib\site-packages\maya\app\general\zipScene.py.txt

 

It worked great. 

 

Here are the steps if you want to fix it:

 - go to your Maya installation folder

 - go to folder Python\Lib\site-packages\maya\app\general

 - edit file zipScene.py.txt in a text editor (notepad++, sublime or simply notepad)

 - go to line 62

   

zip=zipfile.ZipFile(zipFileName, 'w', zipfile.ZIP_DEFLATED)

  - add the allowZip64 flag

zip=zipfile.ZipFile(zipFileName, 'w', zipfile.ZIP_DEFLATED, allowZip64=True)

 - save the file (overwrite)

 

Now you should be able to create large archive files for your Maya scenes.

0 Likes
Message 9 of 12

Anonymous
Not applicable

It would be cool if Autodesk could check if this is a feasible solution. If so, a patch would be highly appreciated; if not, then it would be good to know if there is any other official workaround.

0 Likes
Message 10 of 12

Anonymous
Not applicable

the filename is zipScene.py

0 Likes
Message 11 of 12

Anonymous
Not applicable

This keeps happening in Maya 2018.2

 

Wake up!

0 Likes
Message 12 of 12

Anonymous
Not applicable

This solution (allowZip64=True) works for me. I'm archiving a ton of assets and the largest ZIP file so far is 9.5GB.

0 Likes