The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
Please vote in the Forum Structure Poll. Polling will close at 2PM EST on January 21, 2025.

Zipping Multiple Folders into Separate Archives in Mac OS X.

ZephonateZephonate Registered User regular
Pretty self-explanatory. I have around 700 folders worth of .jpegs that I want to compress to .zip files, but each in separate archives. Each folder has around fifteen to thirty images in it, so I'd want to compress each of those folders individually, ending up with about 700 .zip files. However, anyone who knows Mac OS X knows that when you right-click several folders, it only give you the option to put them all in a single archive, rather than divide them up. Furthermore, performing this task one archive at a time is incredibly tedious and time consuming, and I pray there's an easier, faster method for doing so.

Anyone out there able to help?

[SIGPIC][/SIGPIC]
"For a few seconds Oskar saw through Eli's eyes. And what he saw was...himself. Only much better, more handsome, stronger than what he thought of himself. Seen with love."
--John Ajvide Lindqvist, Let the Right One In (Page 446).
Zephonate on

Posts

  • AbracadanielAbracadaniel Registered User regular
    Found this guide for doing something similar using Automator, could be a good starting point for you http://hints.macworld.com/article.php?story=20070803053156346

  • Apothe0sisApothe0sis Have you ever questioned the nature of your reality? Registered User regular
    This is a classic job for the command line.

    Mac OSX uses bash for its terminal, right?

    You'll want todo something like:

    for d in $(ls -1) ;
    do
    zip <some arguments> "$d" "$d.zip"
    done

    Sorry I can't be more specific on the zip stuff - I don't have great Internet access at the moment. The GNU/Linux and programming thread guys will be able to be exact if you let them know you want some shell scripting advice.

Sign In or Register to comment.