3
votes

I've got this situation where I need to remove a specific file from a ZIP archive. Within the application all handling of ZIP files is done using JclCompression. I was wondering if any of you know how to remove a specific file from a ZIP archive using JclCompression? (I couldn't find it)

1

1 Answers

6
votes

So, I just accidentally ran into the solution:

Besides the TJclZipCompressionArchive and TJclDecompressionArchive the JclCompression library also provides a TJclZipUpdateArchive class. This class contains a method to remove a file from the archive.

zip.RemoveItem(PackedName);