adds file(s) to a zip file that currently already exists

Namespace:  nTools
Assembly:  nZip (in nZip.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void addFilesToZip(
	string fileName,
	params string[] files
)
Public Sub addFilesToZip ( _
	fileName As String, _
	ParamArray files As String() _
)
public:
void addFilesToZip(
	String^ fileName, 
	... array<String^>^ files
)

Parameters

fileName
String
file/directory of the zipfile to be appended to
files
array< String >[]()[]
(optional)any/all files you wish to add to the zipfile. these will append to the ones already in your list of files to add.

See Also