Related posts
-
3ds max and tumblr, a perfect match
Want to share what you’re working on right now in 3ds max? Post an image of your screen directly to your tumblr blog. It’s as […]
-
Drag drop 3ds max files with dotnet
Lonerobot has written an excellent article about dragging and dropping max files from dotnet controls into the viewport just like you would drag drop a […]
-
Sketchfab more stable and plugin of the month at autodesk
The Sketchfab publisher for 3dsMax has been featured as plugin of the month at autodesk. I’ve done a few updates to get it there, mainly […]
Recent posts
-
3ds max and tumblr, a perfect match
Want to share what you’re working on right now in 3ds max? Post an image of your screen directly to your tumblr blog. It’s as […]
-
3D marketing assets for Reinier de Jong
Augment Get the app here Get the AR markers here Use the Augment app on your smartphone to visualize a 3D model of the REK […]
-
Drag drop 3ds max files with dotnet
Lonerobot has written an excellent article about dragging and dropping max files from dotnet controls into the viewport just like you would drag drop a […]





Zip files in 3ds Max
Credits
I’ve taken much of the following script from Rene Baca over at cgTalk. I’ve edited the scripts slightly, added some error-trapping and added a lot of comments. This should make it easier for any scripter to to figure out what the script is doing.
Multithreading
A new feature I’m just implementing in some of my scripts is multithreading. It’s not always very useful and definitely not error-free. For zipping larger files however it’s very useful. I’ve added the option to use the zip-method singlethreaded or multithreaded. For more info in multithreading, check out the article by Lonerobot on this topic.
Command
It’s practical to set up a commandstring as the command is executed with hiddendoscommand. Setting up the string is pretty flexible. In my experience you can only zip stuff to and from mapped drives.
Here a single file is zipped. The struct works with multiple files and recursively searches a root-folder.
Download zip script