HTTPS Downloading File

Index

    Downloading File

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

    Example

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

    in HTTPS
    Did this article answer your question?