.. highlightlang:: us .. index:: ipz_pack .. _ipz_pack: ipz_pack ========= .. us.tag ipz_pack ENGLISH ProgMisc Changed5800 :ref:`ipz_pack` removes unused streams from an IPZ file. .. function:: ret = ipz_pack(ssFile) ret = ipz_pack(ssFile, bFast) .. us.return **Return Value** *ret*. .. us.params **Parameters** .. uparam:: ssFile *ssFile* is the complete file name of an IPZ file. .. uparam:: bFast *bFast* .. us.comment **Comment** ... .. us.example **Example** :: def test() { ssFile = "d:/test.ipz" ipz_pack(ssFile) stg = updf_open_file(ssFile) stgDest = updf_create_file("d:/out.ipz") updf_copy_to(stg, stgDest) updf_close_storage(stg) updf_close_storage(stgDest) } test(); .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - R2016 (5.80.0) - Documented. .. seealso:: :ref:`overview-programming` :sub:`id-723620`