Sample code for 30+ languages & platforms
Unicode C++

SCP Upload File

See more SCP Examples

Demonstrates how to upload a file using the SCP protocol (Secure Copy Protocol over SSH).

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkSshW.h>
#include <CkScpW.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.

    CkSshW ssh;

    // Connect to an SSH server:
    const wchar_t *hostname = 0;
    int port;

    // Hostname may be an IP address or hostname:
    hostname = L"www.some-ssh-server.com";
    port = 22;

    success = ssh.Connect(hostname,port);
    if (success != true) {
        wprintf(L"%s\n",ssh.lastErrorText());
        return;
    }

    // Wait a max of 5 seconds when reading responses..
    ssh.put_IdleTimeoutMs(5000);

    // Authenticate using login/password:
    success = ssh.AuthenticatePw(L"myLogin",L"myPassword");
    if (success != true) {
        wprintf(L"%s\n",ssh.lastErrorText());
        return;
    }

    // Once the SSH object is connected and authenticated, we use it
    // as the underlying transport in our SCP object.
    CkScpW scp;

    success = scp.UseSsh(ssh);
    if (success != true) {
        wprintf(L"%s\n",scp.lastErrorText());
        return;
    }

    const wchar_t *remotePath = L"test.txt";
    const wchar_t *localPath = L"/home/bob/test.txt";
    success = scp.UploadFile(localPath,remotePath);
    if (success != true) {
        wprintf(L"%s\n",scp.lastErrorText());
        return;
    }

    wprintf(L"SCP upload file success.\n");

    // Disconnect
    ssh.Disconnect();
    }