Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SCP for C# [closed]

Tags:

c#

.net

scp

ssh

Is there a library that provides the ability to do SCP transfers in C#?

like image 793
Malfist Avatar asked Mar 16 '09 17:03

Malfist


People also ask

What is SCP command?

What Is SCP Command? 1 Syntax For SCP Protocol. This is the very basic syntax of the SCP command that will copy the source file from the current host to the target path at the ... 2 Options Used With SCP command. -C : C, here stands for enable compression. ... 3 SCP Command Examples. ... 4 FAQ About SCP Command. ...

What is the colon in the SCP command?

The scp command relies on ssh for data transfer, so it requires an ssh key or password to authenticate on the remote systems. The colon (:) is how scp distinguish between local and remote locations. To be able to copy files, you must have at least read permissions on the source file and write permission on the target system.

How do I use SCP to copy files between two systems?

You can also use SCP to copy files between two systems in a network. Attributes can also be copied from the source file to the target file. If you want to copy a file between two remote systems using the Linux SCP command, there are a couple of things to take into consideration. SCP uses the SSH protocol to establish encrypted connections.

What is the SSH SCP protocol?

As you may already know, the SSH protocol creates a secure and encrypted tunnel between your local system and another system, which means that files you copy with the scp command are not liable to be intercepted. DID YOU KNOW? The SCP command is based on the BSD RCP protocol.


1 Answers

Have you tried SharpSSH? (last update was 2013)

like image 55
Jon Skeet Avatar answered Oct 01 '22 12:10

Jon Skeet