Using the %downloadcount, %uploadcount, and %synccount Variables |
Top Previous Next |
The %downloadcount, %uploadcount, and %synccount variables record the number of files transferred with the most recent RCVFILE, SENDFILE, and SYNC script commands, respectively.
Consider the following example in which the total number of files downloaded is used in a message that is displayed to the user.
RCVFILE "*.*" SET msg = %downloadcount + " files received" MESSAGEBOX msg
|