A utility to strip out __MACOSX and .DS_Store files from zip files.
  • Objective-C 100%
Find a file
2023-07-15 19:40:29 +00:00
ZipStripper Updates 2023-07-15 19:40:29 +00:00
ZipStripper.xcodeproj Updates 2023-07-15 19:40:29 +00:00
README.markdown Version 1.0.1. Remove button is now "Remove Selected" and is enabled/disabled depending on selection count. 2012-07-21 10:47:26 -04:00

ZipStripper

A utility to remove __MACOSX directories and .DS_Store files from existing Zip archives.

Uses unzip -ql <zipfile> to read the contents of the zip file, then presents the contents to you in a window with __MACOSX directories and .DS_Store files pre-selected, and a "Remove Selected" button. When you click the button, it uses zip -d <zipfile> <filelist> to actually remove the selected files.

Note that this doesn't do any zip file parsing itself, but just shells out to /usr/bin/zip and /usr/bin/unzip to do the heavy lifting.