![]() |
Chilkat • HOME • Android™ • AutoIt • C • C# • C++ • Chilkat2-Python • CkPython • Classic ASP • DataFlex • Delphi DLL • Go • Java • Node.js • Objective-C • PHP Extension • Perl • PowerBuilder • PowerShell • PureBasic • Ruby • SQL Server • Swift • Tcl • Unicode C • Unicode C++ • VB.NET • VBScript • Visual Basic 6.0 • Visual FoxPro • Xojo Plugin
(Unicode C) Wasabi FTP DownloadSee more Wasabi ExamplesDemonstrates how to download a file from a Wasabi bucket using FTP. Note: Because of problems specific to Wasabi's FTP server, Chilkat v9.5.0.89 or later is needed for FTP access to Wasabi.
#include <C_CkFtp2W.h> void ChilkatSample(void) { HCkFtp2W ftp; BOOL success; const wchar_t *localFilePath; const wchar_t *remoteBucketPath; // This example assumes the Chilkat HTTP API to have been previously unlocked. // See Global Unlock Sample for sample code. ftp = CkFtp2W_Create(); // Use the domain for the bucket you'll be managing. CkFtp2W_putHostname(ftp,L"s3.s3.us-west-1.wasabisys.com"); // Use your root account username (email address) and root account password CkFtp2W_putUsername(ftp,L"root_account_username"); CkFtp2W_putPassword(ftp,L"root_account_password"); CkFtp2W_putSsl(ftp,TRUE); CkFtp2W_putPort(ftp,990); // Note: Because of problems specific to Wasabi's FTP server, Chilkat v9.5.0.89 or later is needed for FTP access to Wasabi. success = CkFtp2W_Connect(ftp); if (success == FALSE) { wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp)); CkFtp2W_Dispose(ftp); return; } // Upload a file (starfish.jpg) to the bucket named "chilkat" localFilePath = L"qa_output/starfish.jpg"; remoteBucketPath = L"/chilkat/starfish.jpg"; success = CkFtp2W_GetFile(ftp,remoteBucketPath,localFilePath); if (success == FALSE) { wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp)); CkFtp2W_Dispose(ftp); return; } wprintf(L"File uploaded.\n"); CkFtp2W_Dispose(ftp); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.