Scp Tcl Reference Documentation

Scp

Current Version: 10.1.2

An API for SCP over SSH. (SCP is the Secure Copy Protocol.) It is for transferring files or directory trees to or from remote servers. SCP is a simpler protocol than SFTP, and thus the functionality is more limited. However, SCP does not require that an SSH server support the SFTP subsystem. In cases where a server does not allow for SFTP, then SCP is a good choice for file transfer.

Object Creation

set myScp [new CkScp]

Properties

AbortCurrent
boolean 1/0
set boolVal [CkScp_get_AbortCurrent $myScp]
CkScp_put_AbortCurrent $myScp $boolVal
Introduced in version 9.5.0.58

When set to 1, causes the currently running method to abort. Methods that always finish quickly (i.e.have no length file operations or network communications) are not affected. If no method is running, then this property is automatically reset to 0 when the next method is called. When the abort occurs, this property is reset to 0. Both synchronous and asynchronous method calls can be aborted. (A synchronous method call could be aborted by setting this property from a separate thread.)

top
DebugLogFilePath
string
# ckStr is a CkString
CkScp_get_DebugLogFilePath $myScp $ckStr
set strVal [CkScp_get_debugLogFilePath $myScp]
CkScp_put_DebugLogFilePath $myScp $strVal

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
LastErrorHtml
string
# ckStr is a CkString
CkScp_get_LastErrorHtml $myScp $ckStr
set strVal [CkScp_get_lastErrorHtml $myScp]

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
string
# ckStr is a CkString
CkScp_get_LastErrorText $myScp $ckStr
set strVal [CkScp_get_lastErrorText $myScp]

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
string
# ckStr is a CkString
CkScp_get_LastErrorXml $myScp $ckStr
set strVal [CkScp_get_lastErrorXml $myScp]

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
boolean 1/0
set boolVal [CkScp_get_LastMethodSuccess $myScp]
CkScp_put_LastMethodSuccess $myScp $boolVal

Indicates the success or failure of the most recent method call: 1 means success, 0 means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages.

top
SendEnv
string
# ckStr is a CkString
CkScp_get_SendEnv $myScp $ckStr
set strVal [CkScp_get_sendEnv $myScp]
CkScp_put_SendEnv $myScp $strVal
Introduced in version 9.5.0.79

A JSON string specifying environment variables that are to be set for each SCP upload or download. For example:

{
    "LCS_PASSWORD": "myPassword",
    "SOME_ENV_VAR": "some_value",
...
}

top
SyncedFiles
string
# ckStr is a CkString
CkScp_get_SyncedFiles $myScp $ckStr
set strVal [CkScp_get_syncedFiles $myScp]
CkScp_put_SyncedFiles $myScp $strVal
Introduced in version 9.5.0.51

The paths of the files uploaded or downloaded in the last call to SyncUploadTree or SyncDownloadTree. The paths are listed one per line. In both cases (for upload and download) each line contains the full local file path (not the remote path).

More Information and Examples
top
SyncMustMatch
string
# ckStr is a CkString
CkScp_get_SyncMustMatch $myScp $ckStr
set strVal [CkScp_get_syncMustMatch $myScp]
CkScp_put_SyncMustMatch $myScp $strVal
Introduced in version 9.5.0.51

Can contain a wildcarded list of filename patterns separated by semicolons. For example, "*.xml; *.txt; *.csv". If set, the SyncTreeUpload and SyncTreeDownload methods will only transfer files having a filename that matches any one of these patterns.

top
SyncMustMatchDir
string
# ckStr is a CkString
CkScp_get_SyncMustMatchDir $myScp $ckStr
set strVal [CkScp_get_syncMustMatchDir $myScp]
CkScp_put_SyncMustMatchDir $myScp $strVal
Introduced in version 9.5.0.58

Can contain a wildcarded list of directory name patterns separated by semicolons. For example, "a*; b*; c*". If set, the SyncTreeUpload and SyncTreeDownload methods will only traverse into a directory that matches any one of these patterns.

top
SyncMustNotMatch
string
# ckStr is a CkString
CkScp_get_SyncMustNotMatch $myScp $ckStr
set strVal [CkScp_get_syncMustNotMatch $myScp]
CkScp_put_SyncMustNotMatch $myScp $strVal
Introduced in version 9.5.0.51

Can contain a wildcarded list of filename patterns separated by semicolons. For example, "*.xml; *.txt; *.csv". If set, the SyncTreeUpload and SyncTreeDownload methods will not transfer files having a filename that matches any one of these patterns.

More Information and Examples
top
SyncMustNotMatchDir
string
# ckStr is a CkString
CkScp_get_SyncMustNotMatchDir $myScp $ckStr
set strVal [CkScp_get_syncMustNotMatchDir $myScp]
CkScp_put_SyncMustNotMatchDir $myScp $strVal
Introduced in version 9.5.0.58

Can contain a wildcarded list of directory name patterns separated by semicolons. For example, "a*; b*; c*". If set, the SyncTreeUpload and SyncTreeDownload methods will not traverse into a directory that matches any one of these patterns.

top
UncommonOptions
string
# ckStr is a CkString
CkScp_get_UncommonOptions $myScp $ckStr
set strVal [CkScp_get_uncommonOptions $myScp]
CkScp_put_UncommonOptions $myScp $strVal
Introduced in version 9.5.0.77

This is a catch-all property to be used for uncommon needs. The default value is the empty string.

Can be set to a list of the following comma separated keywords:

  • FilenameOnly - Introduced in v9.5.0.77. Set this property to the keyword "FilenameOnly" if only the filename should be used in the "scp -t" command. (LANCOM routers using SCP seem to need it.)
  • ProtectFromVpn - Introduced in v9.5.0.80. On Android systems, will bypass any VPN that may be installed or active.

top
UnixPermOverride
string
# ckStr is a CkString
CkScp_get_UnixPermOverride $myScp $ckStr
set strVal [CkScp_get_unixPermOverride $myScp]
CkScp_put_UnixPermOverride $myScp $strVal
Introduced in version 9.5.0.77

When Chilkat uploads a file by SCP, the UNIX permissions of the remote file are set based on the permissions of the local file being uploaded. Usually this is OK, but in some cases the access permissions of the local file are not what is wanted for the remote file. This property can be set to an octal permissions string, such as "0644", to force the remote file permissions to this value.

The default value of this property is the empty string (remote files permissions mirror the permissions of the local file being uploaded).

top
Utf8
boolean 1/0
set boolVal [CkScp_get_Utf8 $myScp]
CkScp_put_Utf8 $myScp $boolVal

When set to 1, all "const char *" arguments are interpreted as utf-8 strings. If set to 0 (the default), then "const char *" arguments are interpreted as ANSI strings. Also, when set to 1, and Chilkat method returning a "const char *" is returning the utf-8 representation. If set to 0, all "const char *" return values are ANSI strings.

top
VerboseLogging
boolean 1/0
set boolVal [CkScp_get_VerboseLogging $myScp]
CkScp_put_VerboseLogging $myScp $boolVal

If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
string
# ckStr is a CkString
CkScp_get_Version $myScp $ckStr
set strVal [CkScp_get_version $myScp]

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

DownloadBd
# remotePath is a string
# bd is a CkBinData
set status [CkScp_DownloadBd $remotePath $bd]
Introduced in version 9.5.0.77

Downloads a binary file from the SSH server and appends to the contents of bd.

Returns 1 for success, 0 for failure.

top
DownloadBdAsync (1)
# returns a CkTask
# remotePath is a string
# bd is a CkBinData
set ret_task [CkScp_DownloadBdAsync $remotePath $bd]
Introduced in version 9.5.0.77

Creates an asynchronous task to call the DownloadBd method with the arguments provided.

Returns NULL on failure

top
DownloadBinary
# remotePath is a string
# outBytes is a CkByteData (output)
set status [CkScp_DownloadBinary $remotePath $outData]
Introduced in version 9.5.0.51

Downloads a binary file from the SSH server and returns the contents.

Returns 1 for success, 0 for failure.

top
DownloadBinaryAsync (1)
# returns a CkTask
# remotePath is a string
set ret_task [CkScp_DownloadBinaryAsync $remotePath]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadBinary method with the arguments provided.

Returns NULL on failure

top
DownloadBinaryEncoded
# remotePath is a string
# encoding is a string
# outStr is a CkString (output)
set status [CkScp_DownloadBinaryEncoded $remotePath $encoding $outStr]
set retStr [CkScp_downloadBinaryEncoded $myScp $remotePath $encoding]
Introduced in version 9.5.0.51

Downloads a file from the SSH server returns the contents in an encoded string (using an encoding such as base64).

Returns 1 for success, 0 for failure.

top
DownloadBinaryEncodedAsync (1)
# returns a CkTask
# remotePath is a string
# encoding is a string
set ret_task [CkScp_DownloadBinaryEncodedAsync $remotePath $encoding]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadBinaryEncoded method with the arguments provided.

Returns NULL on failure

top
DownloadFile
# remotePath is a string
# localPath is a string
set status [CkScp_DownloadFile $remotePath $localPath]
Introduced in version 9.5.0.51

Downloads a file from the remote SSH server to the local filesystem.

Returns 1 for success, 0 for failure.

top
DownloadFileAsync (1)
# returns a CkTask
# remotePath is a string
# localPath is a string
set ret_task [CkScp_DownloadFileAsync $remotePath $localPath]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadFile method with the arguments provided.

Returns NULL on failure

top
DownloadString
# remotePath is a string
# charset is a string
# outStr is a CkString (output)
set status [CkScp_DownloadString $remotePath $charset $outStr]
set retStr [CkScp_downloadString $myScp $remotePath $charset]
Introduced in version 9.5.0.51

Downloads a text file from the SSH server and returns the contents as a string.

Returns 1 for success, 0 for failure.

More Information and Examples
top
DownloadStringAsync (1)
# returns a CkTask
# remotePath is a string
# charset is a string
set ret_task [CkScp_DownloadStringAsync $remotePath $charset]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the DownloadString method with the arguments provided.

Returns NULL on failure

top
LoadTaskCaller
# task is a CkTask
set status [CkScp_LoadTaskCaller $task]
Introduced in version 9.5.0.80

Loads the caller of the task's async method.

Returns 1 for success, 0 for failure.

top
SyncTreeDownload
# remoteRoot is a string
# localRoot is a string
# mode is an integer
# bRecurse is a boolean
set status [CkScp_SyncTreeDownload $remoteRoot $localRoot $mode $bRecurse]
Introduced in version 9.5.0.51

Downloads files from the SSH server to a local directory tree. Synchronization modes include:

mode=0: Download all files
mode=1: Download all files that do not exist on the local filesystem.
mode=2: Download newer or non-existant files.
mode=3: Download only newer files. If a file does not already exist on the local filesystem, it is not downloaded from the server.
mode=5: Download only missing files or files with size differences.
mode=6: Same as mode 5, but also download newer files.

Returns 1 for success, 0 for failure.

More Information and Examples
top
SyncTreeDownloadAsync (1)
# returns a CkTask
# remoteRoot is a string
# localRoot is a string
# mode is an integer
# bRecurse is a boolean
set ret_task [CkScp_SyncTreeDownloadAsync $remoteRoot $localRoot $mode $bRecurse]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the SyncTreeDownload method with the arguments provided.

Returns NULL on failure

top
SyncTreeUpload
# localBaseDir is a string
# remoteBaseDir is a string
# mode is an integer
# bRecurse is a boolean
set status [CkScp_SyncTreeUpload $localBaseDir $remoteBaseDir $mode $bRecurse]
Introduced in version 9.5.0.51

Uploads a directory tree from the local filesystem to the SSH server. Synchronization modes include:

mode=0: Upload all files
mode=1: Upload all files that do not exist on the FTP server.
mode=2: Upload newer or non-existant files.
mode=3: Upload only newer files. If a file does not already exist on the FTP server, it is not uploaded.
mode=4: transfer missing files or files with size differences.
mode=5: same as mode 4, but also newer files.

Returns 1 for success, 0 for failure.

top
SyncTreeUploadAsync (1)
# returns a CkTask
# localBaseDir is a string
# remoteBaseDir is a string
# mode is an integer
# bRecurse is a boolean
set ret_task [CkScp_SyncTreeUploadAsync $localBaseDir $remoteBaseDir $mode $bRecurse]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the SyncTreeUpload method with the arguments provided.

Returns NULL on failure

top
UploadBd
# remotePath is a string
# bd is a CkBinData
set status [CkScp_UploadBd $remotePath $bd]
Introduced in version 9.5.0.77

Uploads the contents of bd to a file on the SSH server.

Returns 1 for success, 0 for failure.

top
UploadBdAsync (1)
# returns a CkTask
# remotePath is a string
# bd is a CkBinData
set ret_task [CkScp_UploadBdAsync $remotePath $bd]
Introduced in version 9.5.0.77

Creates an asynchronous task to call the UploadBd method with the arguments provided.

Returns NULL on failure

top
UploadBinary
# remotePath is a string
# binData is a CkByteData
set status [CkScp_UploadBinary $remotePath $binData]
Introduced in version 9.5.0.51

Uploads binary data to a file on the SSH server.

Returns 1 for success, 0 for failure.

top
UploadBinaryAsync (1)
# returns a CkTask
# remotePath is a string
# binData is a CkByteData
set ret_task [CkScp_UploadBinaryAsync $remotePath $binData]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadBinary method with the arguments provided.

Returns NULL on failure

top
UploadBinaryEncoded
# remotePath is a string
# encodedData is a string
# encoding is a string
set status [CkScp_UploadBinaryEncoded $remotePath $encodedData $encoding]
Introduced in version 9.5.0.51

Uploads the binary data to a file on the remote SSH server. The binary data is passed in encoded string representation (such as base64, or hex).

Returns 1 for success, 0 for failure.

top
UploadBinaryEncodedAsync (1)
# returns a CkTask
# remotePath is a string
# encodedData is a string
# encoding is a string
set ret_task [CkScp_UploadBinaryEncodedAsync $remotePath $encodedData $encoding]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadBinaryEncoded method with the arguments provided.

Returns NULL on failure

top
UploadFile
# localPath is a string
# remotePath is a string
set status [CkScp_UploadFile $localPath $remotePath]
Introduced in version 9.5.0.51

Uploads a file from the local filesystem to the remote SSH server.

Returns 1 for success, 0 for failure.

top
UploadFileAsync (1)
# returns a CkTask
# localPath is a string
# remotePath is a string
set ret_task [CkScp_UploadFileAsync $localPath $remotePath]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadFile method with the arguments provided.

Returns NULL on failure

top
UploadString
# remotePath is a string
# textData is a string
# charset is a string
set status [CkScp_UploadString $remotePath $textData $charset]
Introduced in version 9.5.0.51

Uploads the contents of a string to a file on the remote SSH server.

Returns 1 for success, 0 for failure.

More Information and Examples
top
UploadStringAsync (1)
# returns a CkTask
# remotePath is a string
# textData is a string
# charset is a string
set ret_task [CkScp_UploadStringAsync $remotePath $textData $charset]
Introduced in version 9.5.0.51

Creates an asynchronous task to call the UploadString method with the arguments provided.

Returns NULL on failure

top
UseSsh
# sshConnection is a CkSsh
set status [CkScp_UseSsh $sshConnection]
Introduced in version 9.5.0.51

Uses the SSH connection of sshConnection for the SCP transfers. All of the connection and socket related properties, proxy properites, timeout properties, session log, etc. set on the SSH object apply to the SCP methods (because internally it is the SSH object that is used to do the work of the file transfers).

Returns 1 for success, 0 for failure.

top