Ionic Zip Library v1.9.1.6
RemoveEntries Method (entriesToRemove)
This method removes a collection of entries from the ZipFile.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public void RemoveEntries( ICollection<ZipEntry> entriesToRemove )
Public Sub RemoveEntries ( _ entriesToRemove As ICollection(Of ZipEntry) _ )
public: void RemoveEntries( ICollection<ZipEntry^>^ entriesToRemove )
Parameters
- entriesToRemove (ICollection<(Of <(<'ZipEntry>)>)>)
- A collection of ZipEntry instances from this zip file to be removed. For example, you can pass in an array of ZipEntry instances; or you can call SelectEntries(), and then add or remove entries from that ICollection<ZipEntry> (ICollection(Of ZipEntry) in VB), and pass that ICollection to this method.