Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) HTTP Download any Type of File (binary or text)The Download method may be called to download any type of file. It may be a binary file such as a .zip, .pdf, etc., or it may be text (.xml, .txt, etc.). There is no distinction. The Download method downloads the file from the web server and streams it to a file byte-for-byte exactly as received. Any web page may be downloaded in the same fashion. Passing a URL for a page that would normally be viewed in a browser would simply download to a file the HTML delivered by the web server. SSL/TLS connections are fully supported by simply specifying a URL that begins with "https://".
#include <C_CkHttp.h> void ChilkatSample(void) { HCkHttp http; const char *localFilePath; BOOL success; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); // Download a .zip localFilePath = "/temp/hamlet.zip"; success = CkHttp_Download(http,"http://www.chilkatsoft.com/hamlet.zip",localFilePath); if (success != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); return; } // Download an XML file: // To download using SSL/TLS, simply use "https://" in the URL. localFilePath = "/temp/hamlet.xml"; success = CkHttp_Download(http,"https://www.chilkatsoft.com/hamlet.xml",localFilePath); if (success != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); return; } printf("OK!\n"); CkHttp_Dispose(http); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.