[Root] / Xceed Zip control reference / [Root] / 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 32,700 characters. File names with a length longer than 260 characters (MAX_PATH) must be prefixed with \\?\.

    Applicable properties

    FilesToProcess

    Events triggered

    None