Functionftp_download

Defined in: pbwftp

public subroutine ftp_download (string remote_filename, string local_filename, long resume)

Comment:
Opens a file for download
remote_filename: The name of the file on the FTP server
local_filename: The name of the file to save as (Can include path to file)
resume: > 0 attempt resume if exists


Script:
public subroutine ftp_download (string remote_filename, string local_filename, long resume);/**/

this.i_PBWFtp.Download(remote_filename, local_filename,resume )
end subroutine