Xceed Zip for COM/ActiveX on x86/x64 Documentation
Xceed Zip control reference / Xceed Zip control methods / AddFilesToProcess method
In This Topic
    AddFilesToProcess method
    In This Topic

    Description

    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 )

    Parameters

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

    Return values

    None

    Remarks

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

    Applicable properties

    FilesToProcess

    Events triggered

    None