Xceed Zip Compression Library Documentation
AddFilesToExclude method
Xceed Zip control reference > Xceed Zip control methods > AddFilesToExclude method

Description

The AddFilesToExclude method adds an item to the FilesToExclude's list of files to process.

AddFilesToExclude automatically handles separating items with the CR+LF characters. In fact, it performs the same work as the following line of code:

XceedZip1.FilesToExclude = XceedZip1.FilesToExclude + sFileMask + Chr(13) + Chr(10)

Declaration (ActiveX)  
Method AddFilesToExclude(sFileMask As String)
Declaration (DLL API)  
void XzAddFilesToExclude( HXCEEDZIP hZip, const TCHAR* pszFileMask )

Parameters

Parameter Description
sFileMask The item to add to the FilesToExclude property's list of files.

Return values

None

Remarks

The length of the file names must not exceed 260 characters (MAX_PATH).

Applicable properties

FilesToExclude

Events triggered

None