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
(PowerBuilder) FTP Upload / Download to StringBuilderDemonstrate how to upload from a Chilkat StringBuilder object, and download into a StringBuilder object.
integer li_rc oleobject loo_Ftp integer li_Success oleobject loo_SbA integer li_BIncludeBOM string ls_RemoteFilename oleobject loo_SbB integer li_BCaseSensitive // This example assumes Chilkat Ftp2 to have been previously unlocked. // See Unlock Ftp2 for sample code. loo_Ftp = create oleobject // Use "Chilkat_9_5_0.Ftp2" for versions of Chilkat < 10.0.0 li_rc = loo_Ftp.ConnectToNewObject("Chilkat.Ftp2") if li_rc < 0 then destroy loo_Ftp MessageBox("Error","Connecting to COM object failed") return end if loo_Ftp.Hostname = "www.my-ftp-server.com" loo_Ftp.Username = "mFtpLogin" loo_Ftp.Password = "myFtpPassword" // Connect to the FTP server. li_Success = loo_Ftp.ConnectOnly() if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp return end if // Authenticate with the FTP server. li_Success = loo_Ftp.LoginAfterConnectOnly() if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp return end if loo_SbA = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbA.ConnectToNewObject("Chilkat.StringBuilder") loo_SbA.LoadFile("qa_data/hamlet.xml","utf-8") // Upload the contents of sbA to the FTP server. li_BIncludeBOM = 0 ls_RemoteFilename = "hamletFromSb.xml" li_Success = loo_Ftp.PutFileSb(loo_SbA,"utf-8",li_BIncludeBOM,ls_RemoteFilename) if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp destroy loo_SbA return end if // Download... loo_SbB = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbB.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Ftp.GetFileSb(ls_RemoteFilename,"utf-8",loo_SbB) if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp destroy loo_SbA destroy loo_SbB return end if // Verify that sbA and sbB have the exact same contents. Write-Debug "size of sbA: " + string(loo_SbA.Length) li_BCaseSensitive = 1 if loo_SbA.ContentsEqualSb(loo_SbB,li_BCaseSensitive) = 1 then Write-Debug "Contents are equal. Success." else Write-Debug "Contents are NOT equal. Failed." end if loo_Ftp.Disconnect() destroy loo_Ftp destroy loo_SbA destroy loo_SbB |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.