Article: HTTP Downloading File

Index

Downloading File

You can download a file using the HTTP class. The downloaded file will be saved in the file system as in the file specified in the parameters of the DownloadFile() procedure.

Example

HTTP http =  new HTTP();
http.Hostname = “HostnameAddress/fileToDownload”;
http.DownloadFile(“C:\SaveFiled.txt”);

Related Articles

Main Categories