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 a BinData ObjectDemonstrates how to FTP upload the contents of a BinData object, and FTP downloads to the a BinData object.
integer li_rc oleobject loo_Ftp integer li_Success oleobject loo_BdA string ls_RemoteFilename oleobject loo_BdB // 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_BdA = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_BdA.ConnectToNewObject("Chilkat.BinData") loo_BdA.LoadFile("qa_data/jpg/penguins.jpg") // Upload the contents of bdA to the FTP server. ls_RemoteFilename = "penguins.jpg" li_Success = loo_Ftp.PutFileBd(loo_BdA,ls_RemoteFilename) if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp destroy loo_BdA return end if // Download... loo_BdB = create oleobject // Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0 li_rc = loo_BdB.ConnectToNewObject("Chilkat.BinData") li_Success = loo_Ftp.GetFileBd(ls_RemoteFilename,loo_BdB) if li_Success <> 1 then Write-Debug loo_Ftp.LastErrorText destroy loo_Ftp destroy loo_BdA destroy loo_BdB return end if // Verify that bdA and bdB have the exact same contents. Write-Debug "size of bdA: " + string(loo_BdA.NumBytes) if loo_BdA.ContentsEqual(loo_BdB) = 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_BdA destroy loo_BdB |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.