Lines Matching full:cab
6 :synopsis: Creation of Microsoft Installer files, and CAB files.
18 Because these files often contain an embedded "cabinet" file (``.cab``), it also
19 exposes an API to create CAB files. Support for reading ``.cab`` files is
28 The package contents can be roughly split into four parts: low-level CAB
35 Create a new CAB file named *cabname*. *files* must be a list of tuples, each
36 containing the name of the file on disk, and the name of the file inside the CAB
39 The files are added to the CAB file in the order they appear in the list. All
40 files are added into a single CAB file, using the MSZIP compression algorithm.
327 CAB Objects
331 .. class:: CAB(name)
333 The class :class:`CAB` represents a CAB file. During MSI construction, files
334 will be added simultaneously to the ``Files`` table, and to a CAB file. Then,
335 when all files have been added, the CAB file can be written, then added to the
338 *name* is the name of the CAB file in the MSI file.
343 Add the file with the pathname *full* to the CAB file, under the name
347 Return the index of the file in the CAB file, and the new name of the file
348 inside the CAB file.
353 Generate a CAB file, add it as a stream to the MSI file, put it into the
363 .. class:: Directory(database, cab, basedir, physical, logical, default, [componentflags])
368 Files are added into the current component, and into the cab file. To create a