In need of an archiving app

Joined
Jan 20, 2012
Messages
1
Reaction score
0
Points
1
Does anyone know of an archiving app (preferably free, as I don't have a credit card) for Mac that allows one to view the files of the archived file without actually extracting said files? I already have an app for extraction, but it doesn't allow for viewing, which I need specifically for what I'm trying to do.
 
Joined
Mar 13, 2011
Messages
224
Reaction score
3
Points
18
Your Mac's Specs
2011 MacBook Air, i5 27" IMac, 2010 21.5" IMac, 2010 Mini, 2011 13" MBP, IPhone 4, Airport Extreme
Why not just make an image? It's part of the Mac OS. To view the files all you have to do is mount the image.
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
If it's a zip, you can already do this at the command line. The unzip command has an option for list. The syntax is:

unzip -l <file>

as follows (listing the contents of a Geekbench download)

Code:
Mikes-iMac:Downloads mike$ ls |grep .zip
Geekbench-2.2.3-Mac.zip
Mikes-iMac:Downloads mike$ unzip -l Geekbench-2.2.3-Mac.zip 
Archive:  Geekbench-2.2.3-Mac.zip
  Length     Date   Time    Name
 --------    ----   ----    ----
        0  11-02-11 13:25   Geekbench.app/
        0  11-02-11 13:25   Geekbench.app/Contents/
        0  11-02-11 13:25   Geekbench.app/Contents/Frameworks/
        0  11-02-11 13:25   Geekbench.app/Contents/Frameworks/Sparkle.framework/
        0  11-02-11 13:25   Geekbench.app/Contents/Frameworks/Sparkle.framework/Headers/
      536  11-01-11 00:28   Geekbench.app/Contents/Frameworks/Sparkle.framework/Headers/Sparkle.h
      668  11-01-11 00:28   Geekbench.app/Contents/Frameworks/Sparkle.framework/Headers/SUAppcast.h
     1013  11-01-11 00:28   Geekbench.app/Contents/Frameworks/Sparkle.framework/Headers/SUAppcastItem.h
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top