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 ) |
Parameter | Description |
---|---|
sFileMask | The item to add to the FilesToExclude property's list of files. |
None
The length of the file names must not exceed 260 characters (MAX_PATH).
None