0

我正在寻找一个免费的 .net DLL 来处理 SFTP 连接。

我发现了这个项目SharpSSH,但它缺乏文档。

我花了很多时间来弄清楚 dll 是如何工作的。我创建了一个测试项目,并开始测试不同的功能。某些功能正在运行,例如删除文件。

我对 putfile() 函数和 getfile() 有疑问。

这里有一个例子:

Dim ssh As SFTPUtil
ssh = New SFTPUtil("MY SERVER", "MY USER", "MY PW")
ssh.GetFile("/home/sftptest/test111.xml", "C:\\text.xml")

请注意,getfile() 参数是:

Public Sub GetFile(remotePath As String, localPath As String)

我介入了函数,但我没有得到传递这些参数的正确方法。

我真的不知道我应该使用斜杠(/)还是反斜杠()。我知道 Linux 使用 (/)

例如,我注意到“C:\”已转换为“C:\\”。

只需提及 SFTP 位于 linux 机器上。

谢谢你。

4

3 回答 3

6

这是我应该做的(vb.net代码)来建立与这个库(SSHnet的连接,我没有使用SharpSHH:

Private Sub ButtonAction_Click(sender As Object, e As System.EventArgs) Handles ButtonAction.Click

    Dim PasswordConnection = New PasswordAuthenticationMethod("test", "test")
    Dim KeyboardInteractive = New KeyboardInteractiveAuthenticationMethod("test")
    Dim ConnectionInfo = New ConnectionInfo("192.168.1.1", 22, "test", PasswordConnection, KeyboardInteractive)

    AddHandler KeyboardInteractive.AuthenticationPrompt, _
    Sub(_sender As Object, _e As Renci.SshNet.Common.AuthenticationPromptEventArgs)
        For Each prompt In _e.Prompts
            Debug.Print(prompt.Request)
            If Not prompt.Request.IndexOf("Password:", StringComparison.InvariantCultureIgnoreCase) = -1 Then
                prompt.Response = "test"
            End If
        Next
    End Sub

    sftp = New SftpClient(ConnectionInfo)
    sftp.Connect()

    sftp.disconnect()
End Sub
于 2012-08-03T12:29:00.723 回答
1

这个库充满了错误。我在 11/2012 下载了版本,即使使用像断开连接这样的简单功能,我也遇到了很大的问题。应用程序将冻结,您必须重新启动它。

于 2012-11-26T09:40:37.510 回答
0

我在理解你到底想要什么时遇到了一些问题,所以这里有一个来自 SSH.NET 包的示例代码。(不是 SharpSSH)

string IP = "192.168.1.1", User = "Testuser", Pass = "123";
SftpClient sftp;

private void UploadFileSFTP()
    {
        sftp = new SftpClient(IP, User, Pass);
        sftp.Connect();
        Uploader();
        Downloader();
        sftp.Disconnect();
    }

string FilePath="C:\\folder\\", Filename = "Filename.extention", 
       DeliveryPath = "/tmp/";

private void Uploader()
    {
        using (var file = File.OpenRead(FilePath + Filename))
        {
            sftp.UploadFile(file, DeliveryPath + Filename);
        }
    }

//there is possibly a simpler way to download but this is how i did it.
string FromPath = "/tmp/testfile.txt", StoragePath = ""; 
private void Downloader()
    {
        if (File.Exists(StoragePath))
            File.Delete(StoragePath);
        if (!Directory.GetDirectories(Path.GetTempPath()).Contains("WorkFiles"))
        {
            Directory.CreateDirectory(Path.GetTempPath() + "WorkFiles");
        }

        StoragePath = Path.GetTempPath() + "WorkFiles\\testFile.txt";

        Int64 iSize = sftp.ReadAllBytes(FromPath).Length;
        Int64 iRunningByteTotal = 0;
        using (Stream streamRemote = sftp.OpenRead(FromPath))
        {
            using (Stream streamLocal = new FileStream(StoragePath, FileMode.Create, FileAccess.Write, FileShare.None))
            {
                int iByteSize = 0;
                byte[] byteBuffer = new byte[iSize];
                while ((iByteSize = streamRemote.Read(byteBuffer, 0, byteBuffer.Length)) > 0)
                {
                    streamLocal.Write(byteBuffer, 0, iByteSize);
                    iRunningByteTotal += iByteSize;
                }
            }
        }
    }
于 2012-08-02T17:40:38.027 回答