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) FTP Upload / Download to StringBuilderDemonstrate how to upload from a Chilkat StringBuilder object, and download into a StringBuilder object.
#include <C_CkFtp2.h> #include <C_CkStringBuilder.h> void ChilkatSample(void) { HCkFtp2 ftp; BOOL success; HCkStringBuilder sbA; BOOL bIncludeBOM; const char *remoteFilename; HCkStringBuilder sbB; BOOL bCaseSensitive; // This example assumes Chilkat Ftp2 to have been previously unlocked. // See Unlock Ftp2 for sample code. ftp = CkFtp2_Create(); CkFtp2_putHostname(ftp,"www.my-ftp-server.com"); CkFtp2_putUsername(ftp,"mFtpLogin"); CkFtp2_putPassword(ftp,"myFtpPassword"); // Connect to the FTP server. success = CkFtp2_ConnectOnly(ftp); if (success != TRUE) { printf("%s\n",CkFtp2_lastErrorText(ftp)); CkFtp2_Dispose(ftp); return; } // Authenticate with the FTP server. success = CkFtp2_LoginAfterConnectOnly(ftp); if (success != TRUE) { printf("%s\n",CkFtp2_lastErrorText(ftp)); CkFtp2_Dispose(ftp); return; } sbA = CkStringBuilder_Create(); CkStringBuilder_LoadFile(sbA,"qa_data/hamlet.xml","utf-8"); // Upload the contents of sbA to the FTP server. bIncludeBOM = FALSE; remoteFilename = "hamletFromSb.xml"; success = CkFtp2_PutFileSb(ftp,sbA,"utf-8",bIncludeBOM,remoteFilename); if (success != TRUE) { printf("%s\n",CkFtp2_lastErrorText(ftp)); CkFtp2_Dispose(ftp); CkStringBuilder_Dispose(sbA); return; } // Download... sbB = CkStringBuilder_Create(); success = CkFtp2_GetFileSb(ftp,remoteFilename,"utf-8",sbB); if (success != TRUE) { printf("%s\n",CkFtp2_lastErrorText(ftp)); CkFtp2_Dispose(ftp); CkStringBuilder_Dispose(sbA); CkStringBuilder_Dispose(sbB); return; } // Verify that sbA and sbB have the exact same contents. printf("size of sbA: %d\n",CkStringBuilder_getLength(sbA)); bCaseSensitive = TRUE; if (CkStringBuilder_ContentsEqualSb(sbA,sbB,bCaseSensitive) == TRUE) { printf("Contents are equal. Success.\n"); } else { printf("Contents are NOT equal. Failed.\n"); } CkFtp2_Disconnect(ftp); CkFtp2_Dispose(ftp); CkStringBuilder_Dispose(sbA); CkStringBuilder_Dispose(sbB); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.