请输入您要查询的百科知识:

 

词条 Cabinet (file format)
释义

  1. File structure

  2. Software

  3. Related formats

  4. Application in Component-Based Servicing and related bug

  5. See also

  6. References

  7. External links

{{Use dmy dates|date=June 2013}}{{Infobox file format
| name = Cabinet
| icon = Cab file format icon.png
| extension = .cab
| mime = application/vnd.ms-cab-compressed
| uniform type = public.archive.cab
| conforms to = public.data
public.archive
| owner = Microsoft
| creatorcode =
| magic = MSCF
| genre = Archive file format
| containerfor =
| containedby =
| extendedfrom =
| extendedto =
}}

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:

  • DEFLATE – invented by Phil Katz, the author of the ZIP file format
  • Quantum compression – licensed from David Stafford, the author of the Quantum archiver
  • LZX – invented by Jonathan Forbes and Tomi Poutanen, given to Microsoft when Forbes joined the company

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. A variety of Microsoft installation technologies use the CAB format - these include Windows Installer, Setup API, Device Installer and AdvPack (used by Internet Explorer to install ActiveX components). CAB files are also often associated{{by whom?|date=February 2018}} 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 include 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.

  • Some affix file paths to filenames only, as if all files in a CAB archive are in a single folder. IExpress works this way, as does Microsoft Windows Explorer, which can open CAB archives as a folder.
  • Some can store the paths, and upon extraction, create folders as necessary. CABARC.EXE and EXTRACT.EXE (tools from Microsoft Cabinet SDK[2]) as well as lcab[3] and cabextract[4] (third-party open-source tools) work this way.
  • EXPAND.EXE, only since version 6 (which is included from Windows Vista to above) can extract files to their paths. The previous versions don't do it.[5]

Software

{{Main|Comparison of file archivers}}

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 {{section link|Comparison of file archivers|archive formats}}.

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

  • Compress a single file into a CAB archive

makecab.exe <input_file>[ <output_file>]

  • Read the diamond directive file (with .ddf filename extension) and create a CAB archive containing multiple files in a flat or hierarchical structure like a file system.

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 opened with any CAB file extraction program.

Application in Component-Based Servicing and related bug

Windows (at least versions 7, 8, and 2008 R2 (on windows 10 at that location no cab are found)) uses the .cab format to archive its Component-Based Servicing (CBS) log, which is kept in the folder C:\\Windows\\Logs\\CBS. A bug in the compression process can cause run-away generation of useless log files both in that folder and in C:\\Windows\\Temp, which can consume disk storage until completely filling the hard drive.[7][8] Deletion of the files without following a specific procedure[8] can cause the deleted files to be regenerated at an increased pace.

See also

  • List of archive formats

References

1. ^https://msdn.microsoft.com/en-us/library/bb267310.aspx Microsoft Cabinet Format
2. ^{{cite web|title=Microsoft Cabinet Software Development Kit|url=https://support.microsoft.com/kb/310618|work=Support|publisher=Microsoft|accessdate=27 March 2013}}
3. ^{{cite web|title=lcab|url=http://freecode.com/projects/lcab|work=Freecode|publisher=Dice|accessdate=27 March 2013}}
4. ^{{cite web|title=cabextract|url=http://freecode.com/projects/cabextract|work=Freecode|publisher=Dice|accessdate=27 March 2013}}
5. ^{{cite web|url=http://ss64.org/viewtopic.php?id=1816|title=[Undocumented] [Bugs] Expand.exe (more about it) (Page 1) / Windows CMD Shell / SS64 Forum|author=|date=|website=ss64.org|accessdate=21 April 2018}}
6. ^{{cite web|url=https://github.com/twogood/unshield|title=twogood/unshield|author=|date=|website=GitHub|accessdate=21 April 2018}}
7. ^{{Cite web|url=https://social.technet.microsoft.com/wiki/contents/articles/38259.clean-up-component-based-servicing-logs.aspx|title=Clean Up Component-Based Servicing logs|last=|first=|date=July 7, 2017|website=Microsoft TechNet|archive-url=|archive-date=|dead-url=|access-date=}}
8. ^{{Cite web|url=https://www.computerworld.com/article/3112358/microsoft-windows/windows-7-log-file-compression-bug-can-fill-up-your-hard-drive.html|title=Windows 7 log file compression bug can fill up your hard drive|last=Leonhard|first=Woody|date=2016-08-25|website=Computerworld|language=en|access-date=2019-01-08}}

External links

  • [https://msdn.microsoft.com/en-us/library/ms974336.aspx Microsoft Cabinet SDK] - updated versions of these resources are available in the Microsoft Windows SDK
  • File Extension .CAB
  • Expand Command Reference - Windows XP Professional Product Documentation
  • Cabinet Software Development Kit (CAB SDK) - downloads of all Microsoft CAB SDK versions (free)
{{Archive formats}}

2 : Archive formats|Windows administration

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/13 23:48:09