为了账号安全,请及时绑定邮箱和手机立即绑定

Golang 使用 sftp golang 库将远程文件复制到本地文件夹

Golang 使用 sftp golang 库将远程文件复制到本地文件夹

Go
开心每一天1111 2022-01-04 21:23:08
我得到了在远程主机上创建文件的代码:config := &ssh.ClientConfig{    User:            "xx",    HostKeyCallback: nil,    Auth: []ssh.AuthMethod{        ssh.Password("xx"),    },}config.SetDefaults()sshConn, err := ssh.Dial("tcp", "192.xx.1.xx:22", config)if err != nil {    panic(err)}defer sshConn.Close()client, err := sftp.NewClient(sshConn)if err != nil {    panic(err)}defer client.Close()file, err := client.Create("/www/hello9.txt")if err != nil {    panic(err)}defer file.Close()if _, err := file.Write([]byte("Hello world")); err != nil {    log.Fatal(err)}但是需要将文件从远程主机复制到本地主机。我怎样才能做到这一点使用golang工具github.com/pkg/sftp和golang.org/x/crypto/ssh只?
查看完整描述

1 回答

?
潇湘沐

TA贡献1816条经验 获得超6个赞

您可以使用sftp 包中的Open(path string)和WriteTo(w io.Writer)方法(当然您需要一个 os.File 或类似的东西来写入)。


client, err := ssh.Dial("tcp", "192.x.x.x:22", sshConfig)

if err != nil {

    panic("Failed to dial: " + err.Error())

}

fmt.Println("Successfully connected to ssh server.")


// open an SFTP session over an existing ssh connection.

sftp, err := sftp.NewClient(client)

if err != nil {

    log.Fatal(err)

}

defer sftp.Close()


srcPath := "/tmp/"

dstPath := "C:/temp/"

filename := "test.txt"


// Open the source file

srcFile, err := sftp.Open(srcPath + filename)

if err != nil {

    log.Fatal(err)

}

defer srcFile.Close()


// Create the destination file

dstFile, err := os.Create(dstPath + filename)

if err != nil {

    log.Fatal(err)

}

defer dstFile.Close()


// Copy the file

srcFile.WriteTo(dstFile)


查看完整回答
反对 回复 2022-01-04
  • 1 回答
  • 0 关注
  • 481 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信