File Archive Format

Hey Modders!  I decided instead of making a VS Addin (Their Integration SDK is a pain...), just to make my own editor.  In the "deployment" system, it will archive everything for distribution.  What archive format would you guys like the most?  The API I'm using allows writing for Zip and Tar archives, so those are your choices. (Sorry, writing to 7-Zip isn't supported, but reading is).

4,995 views 4 replies
Reply #1 Top

ZIP and TAR are both outdated and seldom used nowadays, with 7-Zip and RAR being prevalent. ZIP is the better of the two however.

Reply #2 Top

Thanks.  I'll see if I can find a 7zip (or rar) compression library.  Right now the library I'm looking at only supports decompression for 7zip and rar.

Reply #3 Top

Just about all those file archiving programs allow you to write to just about any format nowadays.  ZIP has been the long standard, anyway.

Reply #4 Top

XATHOS, I wasn't going to use a program, I was going to build it into the Editor's Deployment System.  The .NET API I was going to use (SharpCompress, which is hosted here), only supports compression in zip, and tar archives, but with many different compression formats for each.