C# Класс Tamir.SharpSsh.Scp

Class for handling SCP file transfers over SSH connection.
Наследование: Tamir.SharpSsh.SshTransferProtocolBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Cancel ( ) : void
From ( string remoteFile, string localPath ) : void

Copies a file from a remote SSH machine to the local machine using SCP.

From ( string remoteFile, string localPath, bool _recursive ) : void

Copies a file from a remote SSH machine to the local machine using SCP.

Get ( string fromFilePath, string toFilePath ) : void
Mkdir ( string dir ) : void

Creates a directory on the remot server

Put ( string fromFilePath, string toFilePath ) : void
Scp ( string host, string user ) : System
Scp ( string host, string user, string password ) : System
To ( string localPath, string remotePath ) : void

Copies a file from local machine to a remote SSH machine.

To ( string localPath, string remotePath, bool _recursive ) : void

Copies a file from local machine to a remote SSH machine.

Защищенные методы

Метод Описание
ConnectChannel ( ) : void

This function is empty, so no channel is connected on session connect

SCP_CheckConnectivity ( ) : void

Checks is a channel is already connected by this instance

SCP_ConnectFrom ( Channel &channel, Stream &server, string rfile, bool recursive ) : void

Connect a channel to the remote server using the 'SCP From' command ('scp -f')

SCP_ConnectTo ( Channel &channel, Stream &server, string rfile, bool recursive ) : void

Connect a channel to the remote server using the 'SCP TO' command ('scp -t')

SCP_EnterIntoDir ( Stream server, string dir ) : void

Instructs the remote server to enter into a directory

SCP_EnterIntoParent ( Stream server ) : void

Instructs the remote server to go up one level

SCP_ReceiveFile ( Stream server, string rfile, string lfile, int size ) : void

Transfer a file from the remote server

SCP_SendFile ( Stream server, string src, string dst ) : void

Transfer a file to the remote server

Приватные методы

Метод Описание
SCP_CheckAck ( Stream ins ) : int

Gets server acknowledgment

SCP_SendAck ( Stream server ) : void

Sends acknowledgment to remote server

ToRecursive ( Stream server, string src, string dst ) : void

Copies files and directories from local machine to a remote SSH machine using SCP.

Описание методов

Cancel() публичный Метод

public Cancel ( ) : void
Результат void

ConnectChannel() защищенный Метод

This function is empty, so no channel is connected on session connect
protected ConnectChannel ( ) : void
Результат void

From() публичный Метод

Copies a file from a remote SSH machine to the local machine using SCP.
public From ( string remoteFile, string localPath ) : void
remoteFile string The remmote file name
localPath string The local destination path
Результат void

From() публичный Метод

Copies a file from a remote SSH machine to the local machine using SCP.
public From ( string remoteFile, string localPath, bool _recursive ) : void
remoteFile string The remmote file name
localPath string The local destination path
_recursive bool Value indicating whether a recursive transfer should take place
Результат void

Get() публичный Метод

public Get ( string fromFilePath, string toFilePath ) : void
fromFilePath string
toFilePath string
Результат void

Mkdir() публичный Метод

Creates a directory on the remot server
public Mkdir ( string dir ) : void
dir string The new directory
Результат void

Put() публичный Метод

public Put ( string fromFilePath, string toFilePath ) : void
fromFilePath string
toFilePath string
Результат void

SCP_CheckConnectivity() защищенный Метод

Checks is a channel is already connected by this instance
protected SCP_CheckConnectivity ( ) : void
Результат void

SCP_ConnectFrom() защищенный Метод

Connect a channel to the remote server using the 'SCP From' command ('scp -f')
protected SCP_ConnectFrom ( Channel &channel, Stream &server, string rfile, bool recursive ) : void
channel Tamir.SharpSsh.jsch.Channel Will contain the new connected channel
server Stream Will contaun the new connected server I/O stream
rfile string The remote path on the server
recursive bool Idicate a recursive scp transfer
Результат void

SCP_ConnectTo() защищенный Метод

Connect a channel to the remote server using the 'SCP TO' command ('scp -t')
protected SCP_ConnectTo ( Channel &channel, Stream &server, string rfile, bool recursive ) : void
channel Tamir.SharpSsh.jsch.Channel Will contain the new connected channel
server Stream Will contaun the new connected server I/O stream
rfile string The remote path on the server
recursive bool Idicate a recursive scp transfer
Результат void

SCP_EnterIntoDir() защищенный Метод

Instructs the remote server to enter into a directory
protected SCP_EnterIntoDir ( Stream server, string dir ) : void
server Stream A connected server I/O stream
dir string
Результат void

SCP_EnterIntoParent() защищенный Метод

Instructs the remote server to go up one level
protected SCP_EnterIntoParent ( Stream server ) : void
server Stream A connected server I/O stream
Результат void

SCP_ReceiveFile() защищенный Метод

Transfer a file from the remote server
protected SCP_ReceiveFile ( Stream server, string rfile, string lfile, int size ) : void
server Stream A connected server I/O stream
rfile string The remote file to copy
lfile string The local destination path
size int
Результат void

SCP_SendFile() защищенный Метод

Transfer a file to the remote server
protected SCP_SendFile ( Stream server, string src, string dst ) : void
server Stream A connected server I/O stream
src string The source file to copy
dst string The remote destination path
Результат void

Scp() публичный Метод

public Scp ( string host, string user ) : System
host string
user string
Результат System

Scp() публичный Метод

public Scp ( string host, string user, string password ) : System
host string
user string
password string
Результат System

To() публичный Метод

Copies a file from local machine to a remote SSH machine.
public To ( string localPath, string remotePath ) : void
localPath string The local file path.
remotePath string The path of the remote file.
Результат void

To() публичный Метод

Copies a file from local machine to a remote SSH machine.
public To ( string localPath, string remotePath, bool _recursive ) : void
localPath string The local file path.
remotePath string The path of the remote file.
_recursive bool
Результат void