Ionic Zip Library v1.9.1.6
RemoveEntries Method (entriesToRemove)
This method removes a collection of entries from the ZipFile, by name.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public void RemoveEntries( ICollection<string> entriesToRemove )
Public Sub RemoveEntries ( _ entriesToRemove As ICollection(Of String) _ )
public: void RemoveEntries( ICollection<String^>^ entriesToRemove )
Parameters
- entriesToRemove (ICollection<(Of <(<'String>)>)>)
- A collection of strings that refer to names of entries to be removed from the ZipFile. For example, you can pass in an array or a List of Strings that provide the names of entries to be removed.