Using the %zipcount and %upzipcount Variables |
Top Previous Next |
The %zipcount and %upzipcount variables record the number of files zipped and unzipped with the most recent ZIP and UNZIP RCVFILE script commands, respectively.
Consider the following example in which the total number of files zipped is used in a message that is displayed to the user.
ZIP "zipfile" "*.xml" SET msg = %zipcount + " XML files zipped" MESSAGEBOX msg
|