(Unicode C++) Simple FTP Upload
Simple example to upload a file to an FTP server.
#include <CkFtp2W.h>
void ChilkatSample(void)
{
// 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");
// Connect and login to the FTP server.
bool 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 *localPath = L"c:/temp/hamlet.xml";
const wchar_t *remoteFilename = L"hamlet.xml";
success = ftp.PutFile(localPath,remoteFilename);
if (success != true) {
wprintf(L"%s\n",ftp.lastErrorText());
return;
}
success = ftp.Disconnect();
wprintf(L"File Uploaded!\n");
}
|