FTPGETDIFF Get specific changes within FTP site file system |
Top Previous Next |
The FTPDIFF and FTPGETDIFF commands work together to identify and process changes to local files.
The FTPGETDIFF command sets the values of five internal variables with details describing a change to a single file on a remote site. These details are pulled from a snapshot database where they were inserted by a previous call to the FTPDIFF command. Subsequent calls to FTPGETDIFF fetch the details of subsequent changes from the database. The FTPGETDIFF command is typically used in a loop so that each detected change is processed during one iteration of the loop. Depending on your needs, the processing may involve one or more of the internal variables set by this command. It is possible for FTPGETDIFF to report file changes in alphabetical order rather than folder hierarchical order depending on how the records are stored in the snapshot database. This command returns $ERROR_READ_EOF when there are no more differences in the database. The FTPDIFFREWIND command is available to reset the file pointer to the first change recorded in the database.
If the [ dbfile ] argument is omitted, the default file name “snapshot_site.sql” file is used. An error occurs if the snapshot database file does not exist.
The FTPGETDIFF command sets the values of the following variables that you can use in your script logic:
The possible values of %ftpdifffileid and %ftpdifffiletext are:
Here is a simple example that shows how FTPGETDIFF might be used inside a loop to write a text file that lists all the changes found by FTPDIFF:
FTPDIFF "*" :loop FTPGETDIFF IFERROR= $ERROR_READ_EOF GOTO done SET change = "File: " + %ftpdifffilepath + " " + %ftpdifffiletext WRITEFILE "differences.txt" change /append GOTO loop :done
The following example loops through all changes and downloads only the new files from a remote site:
FTPDIFF "*" :loop FTPGETDIFF IFERROR= $ERROR_READ_EOF GOTO done IFNUM!= %ftpdifffileid $DIFF_FILE_IS_NEW GOTO loop RCVFILE %ftpdifffilename GOTO loop :done
If you need to restart the loop, use the FTPDIFFREWIND command to reset the file pointer to the first difference recorded in the snapshot database.
Note: Snapshot database files are small SQLite database files created by Robo-FTP to support the DIFF and FTPDIFF family of script commands.
Important The success of this command depends on Robo-FTP's ability to automatically read and understand the directory listings returned by the remote site. Most HTTP/HTTPS sites do not return listings in a supported format and many return no raw directory listings in response to HTTP GET requests based on slash-terminated URLs. Contact technical support if you have an urgent need related to a raw directory listing format that is currently unsupported.
Related command(s): FTPDIFF, FTPDIFFREWIND, GETDIFF See also: Processing Dynamic Folders, Using the built-in database engine, Alternate Default Path |