Discuss this help topic in SecureBlackbox Forum

Remove files or directories from the ZIP archive

To remove the entries (files or directories) from the archive you need to open the archive with TElZIPWriter, then use its Remove() method. Finally, save the changes in the archive.
Example:

ZipWriter = new TElZipWriter();
...
ZipWriter.Remove("*.txt");

How To articles about Zip file operations

Discuss this help topic in SecureBlackbox Forum