The AddFilesToProcess method adds an item to the FilesToProcess property's list of files to process.
AddFilesToProcess automatically handles separating items with the CR+LF characters. In fact, it performs the same work as the following line of code:
XceedZip1.FilesToProcess = XceedZip1.FilesToProcess + sFileMask + Chr(13) + Chr(10)
| Declaration (ActiveX) | |
|---|---|
Method AddFilesToProcess(sFileMask As String) | |
| Declaration (DLL API) | |
|---|---|
void XzAddFilesToProcess( HXCEEDZIP hZip, const TCHAR* pszFileMask ) | |
| Parameter | Description |
|---|---|
| sFileMask | The item to add to the FilesToProcess property's list of files. |
None
The length of the file names must not exceed 260 characters (MAX_PATH).
None