Unicode C++
Unicode C++
Passive FTP Upload
See more FTP Examples
Simple example to upload a file to an FTP server using passive mode.Chilkat Unicode C++ Downloads
#include <CkFtp2W.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkFtp2W ftp;
ftp.put_Hostname(L"ftp.example.com");
ftp.put_Username(L"login");
ftp.put_Password(L"password");
// Use Passive mode.
ftp.put_Passive(true);
// Connect and login to the FTP server.
success = ftp.Connect();
if (success != true) {
wprintf(L"%s\n",ftp.lastErrorText());
return;
}
// Change to the remote directory where the file will be uploaded.
success = ftp.ChangeRemoteDir(L"junk");
if (success != true) {
wprintf(L"%s\n",ftp.lastErrorText());
return;
}
// Upload a file.
const wchar_t *localFilename = L"hamlet.xml";
const wchar_t *remoteFilename = L"hamlet.xml";
success = ftp.PutFile(localFilename,remoteFilename);
if (success != true) {
wprintf(L"%s\n",ftp.lastErrorText());
return;
}
success = ftp.Disconnect();
wprintf(L"File Uploaded!\n");
}