<ftp_getfile> Downloads file from a remote FTP server.


Command Tree:   Internet  \  FTP   \  Download File
.
Syntax:   <ftp_getfile>("LocalFile", "RemoteFile", "UserName", "Password")
LocalFile
Full path to the file on local machine.  If the file already exists it will be overwritten without a prior prompt.
RemoteFile
Full path to the remote file (e.g., ftp://softwareutilities.com/about.txt).
UserName
User login name.  If empty the "anonymous" is considered.
Password
User name login password.
.
.
Example:   <#> This macro downloads "about.txt" file from SoftwareUtilities.Com
<#> FTP server and saves it in "c:\about.txt"
<#>
<ftp_getfile>("c:\about.txt","ftp://softwareutilities.com/ftp/about.txt","","")