Livecode Wiki
Advertisement

Deletes an item from a zip archive.Syntax:

revZipDeleteItem <archivePath>, <itemName>

Examples:

revZipDeleteItem tArchive, "myZippedItem"

Use the revZipDeleteItem command to remove one of the items from an open zip archive. The archive must first have been opened using the revZipOpenArchive command.

Parameters:

  • archivePath: The absolute path to the zip archive to remove an item from.
  • itemName: The name of the item in the archive to remove. If revZipDeleteItemencounters an error then the result will be set to an error codebeginning with "ziperr", otherwise the result will be empty

See also: revZipDescribeItem (function),revZipEnumerateItems (function),

Advertisement