Sitemap Sitemap  |  Contact Us Contact Us  |  Clients Clients
   File transfer (FTP)
  Home |  WebHare Lite |  Downloads |  HareScript |  Websites/CMS |  Applications
Search for:  in: 
HareScript
Internet connectivity
 
File transfer (FTP)
Hypertext transfer (HTTP)
IMAP library
MIME and RFC822
POP3 email
Simple Mail Transfer Protocol (SMTP)
TCP/IP connections
File transfer (FTP)

These functions allow access to FTP sites.

Use the following code in your script to load the library:

  LOADLIB "wh::internet/ftp.whlib";

Public Functions and Macros

ChangeFTPDirectory This function will change the working directory on the ftp server
CloseFTPConnection Close the connection to the ftp server
CreateFTPConnection This function will try to login to an ftp server
CreateFTPDirectory This function will create a new directory
DeleteFTPDirectory This function will delete a directory. When the directory is not recursively deleted, it should be empty.
DeleteFTPFile This function will delete a file
DestroyFTPConnection Destroy the connection to the ftp server
GetCurrentFTPDirectory This function will change the working directory on the ftp server
GetFTPError This function will check and clear the last error that occured (if any)
GetFTPFile This function will retrieve a file from the ftp site
ReadFTPDirectory This function will return a record array of the directory listing
RenameFTPFile This function will rename a file
StoreFTPFile This function will store a file to the ftp server
 
Top To top of page