CF_ZIPPARAM
CF_ZIPPARAM can either add files or folders to CF_ZIP.
See also CF_ZIP.
Syntax
<CF_ZIPPARAM TYPE="type"
VALUE="value">
TYPE
Required. The transaction type. Valid values are
VALUE
Required. Value for the above mentioned TYPE, it can be file or folder path.
Example
<!--- This view-only example shows the use of CF_ZIPPARAM --->
<HTML>
<HEAD>
<TITLE>CF_ZIPPARAM Example</TITLE>
</HEAD>
<BODY>
<H3>CF_ZIPPARAM Example</H3>
<P>This view-only example shows the use of CF_ZIPPARAM
to show add files or folders to CF_ZIP.</P>
<CF_ZIP FILE="c:\myfolder\myfile.zip"
ACTION="ZIP">
<CF_ZIPPARAM TYPE="File" VALUE="c:\myfolder\myfile.exe">
<CF_ZIPPARAM TYPE="File" VALUE="c:\myfolder\yourfile.exe">
<CF_ZIPPARAM TYPE="Folder" VALUE="c:\myfolders">
</CF_ZIP>
</BODY>
</HTML>