How to make a .Zip folder without Compression

Joined
Sep 6, 2009
Messages
1
Reaction score
0
Points
1
How to make a .Zip folder WITHOUT Compression?

***It doesn't have to be a Zip by definition, it could just be an "archive" w/o compression, or w/e (i'm not too knowledgeable on this part...). I just want to be able to upload a folder and all its contents at once without 'compressing'/making the file smaller it.***
 
Joined
Oct 22, 2007
Messages
8,967
Reaction score
287
Points
83
Location
London
Your Mac's Specs
Mac Mini Core i7 2012 | White 2009 MacBook 2 Ghz | 733 Mhz G4 Quicksilver
You cannot

ZIP is a compression algorithm by its very nature
 
Joined
Aug 4, 2009
Messages
82
Reaction score
4
Points
8
Location
Portland, OR
Your Mac's Specs
BlackBook 2 GHz 2GB RAM 120GB HDD
like louishen said, it's not possible. You can easily make a .zip file with a ctrl+click on the folder and selecting "Compress 'filenamehere'". No need for a program. But if you want to make one without any compression, it's impossible.
 
Joined
Dec 13, 2007
Messages
256
Reaction score
10
Points
18
Location
United States of America
Your Mac's Specs
2.1GHz MacBook with 4GB RAM, Mac OS X 10.6, iLife and iWork ‘09
As those before me stated, I don’t know of any way to make a .zip file without compression. However, there are various other ways to make archives of different formats that do not require compression. Here are two relatively simple ways that I can think of.

The first way to do it is with OS X’s Archive Utility application. Open a new Finder window and navigate to Macintosh HD:System:Library:CoreServices and open Archive Utility (don’t mess with any of the other files in the System folder unless you know exactly what you’re doing). In Archive Utility, open the preferences and set it to use regular archives.

screenshot20090906at414.png


Afterward, simply go to File → Create Archive (or press ⌘K), then select the folder containing the files you want to archive from the Archive Files selection dialog and click Archive. This will create a .cpio file right next to the folder you selected. To open it on a Mac, simply double click it and Archive Utility will be able to open it. If you’re sharing with others using Windows, they might need to download something like [url="http://peazip.sourceforge.net/“]PeaZip[/url]. If they’re using Linux, they might have the command line cpio utility installed already; if not, PeaZip and many other capable programs are available for Linux as well.

----

Another method to consider is making a .tar archive. This is probably the simpler method if you’re comfortable with using the command line. Open Terminal from your Utilities folder and navigate to the directory containing the folder you want to archive and simply type the following command, replacing archive_name with the name you want to use for the new archive and folder_to_archive with the name of the folder you’re archiving:
Code:
tar -cf [i]archive_name[/i].tar [i]folder_to_archive[/i]
Tar files are handled similarly to cpio files; that is, you can simply double click them to open them on a Mac (and most flavors of Linux). On Windows, the aforementioned PeaZip and other programs are able to handle them.
 
Joined
Sep 23, 2009
Messages
1
Reaction score
0
Points
1
You may Zip without compression, control how much compression, or compress some files and not others. True since the old DOS days.

Create zip without compression on OS X from Terminal:

zip -r0 zipfilename.zip files-to-zip

If you want to add files with max compression:

zip -r9 zipfilename.zip files-to-zip

Use zip -h to see what all the switches do.
 

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