Cabinet (file format)

Cabinet
Filename extension .cab
Internet media type application/vnd.ms-cab-compressed
Uniform Type Identifier (UTI) public.archive.cab
UTI conformation public.data
public.archive
Magic number MSCF
Developed by Microsoft
Type of format Archive file format

Cabinet (or CAB) is an archive file format for Microsoft Windows that supports lossless data compression and embedded digital certificates used for maintaining archive integrity. Cabinet files have .cab filename extensions and are recognized by their first 4 bytes MSCF. Cabinet files were known originally as Diamond files.

The CAB file format may employ the following compression algorithms:

A CAB archive can reserve empty spaces in the archive as well as for each file in the archive, for some application-specific uses like digital signatures or arbitrary data. CAB format is used by a variety of Microsoft installation technologies including Windows Installer, Setup API, Device Installer and AdvPack (used by Internet Explorer to install ActiveX components). CAB files are also often associated with self-extracting programs like IExpress where the executable program extracts the associated CAB file. CAB files are also sometimes embedded into other files. For example, MSI and MSU files (the latter are CAB files with just another filename extension) usually included one or more embedded CAB files.

File structure

A CAB archive can contain up to 65535 CAB-folders, (not to be confused with file system folders) each can contain up to 65535 files. Internally, each CAB-folder is treated as a single compressed block, which provides more efficient compression than individually compressing each file.

Every entry in a CAB-folder has to be a file.[1] Due to this structure, it is not possible to store empty folders in CAB archives.

The following shows an example a CAB file structure, demonstrating the relationship between CAB-folders and files:

CAB file
1st CAB-folder
Path: Records/Student_01.tsv
Path: Records/Photos/Student_01.jpg
2nd CAB-folder
Path: Records/Student_02.tsv
Path: Records/Photos/Student_02.jpg

How paths should be handled is not specified in the CAB file format, leaving it to the software implementation.

Software

Software that can extract the contents of a CAB archive file are numerous, including Microsoft Windows itself (through File Explorer, Setup API, expand.exe or extract.exe) as well as well-known software such as WinZip, WinRAR or 7-Zip. However, fewer programs can create CAB archives. For a full list, see Comparison of file archivers § archive formats.

The Windows program makecab.exe is used to create CAB archives:

makecab.exe <input_file>[ <output_file>]
makecab.exe /F <diamond_directive_file>[ <output_file>]

Related formats

The .cab filename extension is also used by other installer programs (e.g. InstallShield) for their own proprietary archiving formats. InstallShield uses zlib for compression (see Deflate), but their headers are not the same as for Microsoft CAB files so they are incompatible and cannot be manipulated or edited with the programs that are made for standard Cabinet format. Specialized third-party utilities, such as Unshield,[6] can extract this specific proprietary format.

Microsoft Publisher has a "Pack and Go" feature that bundles a publisher document, together with all external links, into a CAB file with a .PUZ extension. These files are meant to be activated with a companion .EXE file which is distributed along with the .PUZ file. These files may be renamed and activated with any CAB file extraction program.

See also

References

  1. https://msdn.microsoft.com/en-us/library/bb267310.aspx Microsoft Cabinet Format
  2. "Microsoft Cabinet Software Development Kit". Support. Microsoft. Retrieved 27 March 2013.
  3. "lcab". Freecode. Dice. Retrieved 27 March 2013.
  4. "cabextract". Freecode. Dice. Retrieved 27 March 2013.
  5. http://ss64.org/viewtopic.php?id=1816
  6. Unshield

External links


This article is issued from Wikipedia - version of the 5/1/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.