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