go语言实现sftp包上传文件和文件夹到远程服务器操作
来源:脚本之家
2023-02-24 21:36:45
0浏览
收藏
IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《go语言实现sftp包上传文件和文件夹到远程服务器操作》,聊聊服务器、上传、gosftp,我们一起来看看吧!
使用go语言的第三方包:github.com/pkg/sftp和golang.org/x/crypto/ssh实现文件和文件夹传输。
1、创建connect方法:
func connect(user, password, host string, port int) (*sftp.Client, error) { var ( auth []ssh.AuthMethod addr string clientConfig *ssh.ClientConfig sshClient *ssh.Client sftpClient *sftp.Client err error ) // get auth method auth = make([]ssh.AuthMethod, 0) auth = append(auth, ssh.Password(password)) clientConfig = &ssh.ClientConfig{ User: user, Auth: auth, Timeout: 30 * time.Second, HostKeyCallback: ssh.InsecureIgnoreHostKey(), //ssh.FixedHostKey(hostKey), } // connet to ssh addr = fmt.Sprintf("%s:%d", host, port) if sshClient, err = ssh.Dial("tcp", addr, clientConfig); err != nil { return nil, err } // create sftp client if sftpClient, err = sftp.NewClient(sshClient); err != nil { return nil, err } return sftpClient, nil }
2、上传文件
func uploadFile(sftpClient *sftp.Client, localFilePath string, remotePath string) { srcFile, err := os.Open(localFilePath) if err != nil { fmt.Println("os.Open error : ", localFilePath) log.Fatal(err) } defer srcFile.Close() var remoteFileName = path.Base(localFilePath) dstFile, err := sftpClient.Create(path.Join(remotePath, remoteFileName)) if err != nil { fmt.Println("sftpClient.Create error : ", path.Join(remotePath, remoteFileName)) log.Fatal(err) } defer dstFile.Close() ff, err := ioutil.ReadAll(srcFile) if err != nil { fmt.Println("ReadAll error : ", localFilePath) log.Fatal(err) } dstFile.Write(ff) fmt.Println(localFilePath + " copy file to remote server finished!") }
3、上传文件夹
func uploadDirectory(sftpClient *sftp.Client, localPath string, remotePath string) { localFiles, err := ioutil.ReadDir(localPath) if err != nil { log.Fatal("read dir list fail ", err) } for _, backupDir := range localFiles { localFilePath := path.Join(localPath, backupDir.Name()) remoteFilePath := path.Join(remotePath, backupDir.Name()) if backupDir.IsDir() { sftpClient.Mkdir(remoteFilePath) uploadDirectory(sftpClient, localFilePath, remoteFilePath) } else { uploadFile(sftpClient, path.Join(localPath, backupDir.Name()), remotePath) } } fmt.Println(localPath + " copy directory to remote server finished!") }
4、上传测试
func DoBackup(host string, port int, userName string, password string, localPath string, remotePath string) { var ( err error sftpClient *sftp.Client ) start := time.Now() sftpClient, err = connect(userName, password, host, port) if err != nil { log.Fatal(err) } defer sftpClient.Close() _, errStat := sftpClient.Stat(remotePath) if errStat != nil { log.Fatal(remotePath + " remote path not exists!") } backupDirs, err := ioutil.ReadDir(localPath) if err != nil { log.Fatal(localPath + " local path not exists!") } uploadDirectory(sftpClient, localPath, remotePath) elapsed := time.Since(start) fmt.Println("elapsed time : ", elapsed) }
补充:go实现ssh远程机器并传输文件
核心依赖包:
golang.org/x/crypto/ssh
github.com/pkg/sftp
其中golang.org/x/crypto/ssh 可从github上下载,
下载地址:https://github.com/golang/crypto
ssh连接源码(这里是根据秘钥连接):
var keypath = "key/id_rsa" //获取秘钥 func publicKey(path string) ssh.AuthMethod { keypath, err := homedir.Expand(path) if err != nil { fmt.Println("获取秘钥路径失败", err) } key, err1 := ioutil.ReadFile(keypath) if err1 != nil { fmt.Println("读取秘钥失败", err1) } signer, err2 := ssh.ParsePrivateKey(key) if err2 != nil { fmt.Println("ssh 秘钥签名失败", err2) } return ssh.PublicKeys(signer) } //获取ssh连接 func GetSSHConect(ip, user string, port int) (*ssh.Client) { con := &ssh.ClientConfig{ User: user, Auth: []ssh.AuthMethod{publicKey(keypath)}, HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error { return nil }, } addr := fmt.Sprintf("%s:%d", ip, port) client, err := ssh.Dial("tcp", addr, con) if err != nil { fmt.Println("Dail failed: ", err) panic(err) } return client } // 远程执行脚本 func Exec_Task(ip, user, localpath, remotepath string) int { port := 22 client := GetSSHConect(ip, user, port) UploadFile(ip, user, localpath, remotepath, port) session, err := client.NewSession() if err != nil { fmt.Println("创建会话失败", err) panic(err) } defer session.Close() remoteFileName := path.Base(localpath) dstFile := path.Join(remotepath, remoteFileName) err1 := session.Run(fmt.Sprintf("/usr/bin/sh %s", dstFile)) if err1 != nil { fmt.Println("远程执行脚本失败", err1) return 2 } else { fmt.Println("远程执行脚本成功") return 1 } }
文件传输功能:
//获取ftp连接 func getftpclient(client *ssh.Client) (*sftp.Client) { ftpclient, err := sftp.NewClient(client) if err != nil { fmt.Println("创建ftp客户端失败", err) panic(err) } return ftpclient } //上传文件 func UploadFile(ip, user, localpath, remotepath string, port int) { client := GetSSHConect(ip, user, port) ftpclient := getftpclient(client) defer ftpclient.Close() remoteFileName := path.Base(localpath) fmt.Println(localpath, remoteFileName) srcFile, err := os.Open(localpath) if err != nil { fmt.Println("打开文件失败", err) panic(err) } defer srcFile.Close() dstFile, e := ftpclient.Create(path.Join(remotepath, remoteFileName)) if e != nil { fmt.Println("创建文件失败", e) panic(e) } defer dstFile.Close() buffer := make([]byte, 1024) for { n, err := srcFile.Read(buffer) if err != nil { if err == io.EOF { fmt.Println("已读取到文件末尾") break } else { fmt.Println("读取文件出错", err) panic(err) } } dstFile.Write(buffer[:n]) //注意,由于文件大小不定,不可直接使用buffer,否则会在文件末尾重复写入,以填充1024的整数倍 } fmt.Println("文件上传成功") } //文件下载 func DownLoad(ip, user, localpath, remotepath string, port int) { client := GetSSHConect(ip, user, port) ftpClient := getftpclient(client) defer ftpClient.Close() srcFile, err := ftpClient.Open(remotepath) if err != nil { fmt.Println("文件读取失败", err) panic(err) } defer srcFile.Close() localFilename := path.Base(remotepath) dstFile, e := os.Create(path.Join(localpath, localFilename)) if e != nil { fmt.Println("文件创建失败", e) panic(e) } defer dstFile.Close() if _, err1 := srcFile.WriteTo(dstFile); err1 != nil { fmt.Println("文件写入失败", err1) panic(err1) } fmt.Println("文件下载成功") }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持golang学习网。如有错误或未考虑完全的地方,望不吝赐教。
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。
版本声明
本文转载于:脚本之家 如有侵犯,请联系study_golang@163.com删除

- 上一篇
- Go外部依赖包从vendor,$GOPATH和$GOPATH/pkg/mod查找顺序

- 下一篇
- golang实现ftp实时传输文件的案例
评论列表
-
- 高贵的书本
- 感谢大佬分享,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,看完之后很有帮助,总算是懂了,感谢老哥分享文章内容!
- 2023-03-23 04:10:40
-
- 痴情的钢笔
- 这篇博文太及时了,up主加油!
- 2023-03-20 02:10:10
-
- 安静的歌曲
- 这篇博文真是及时雨啊,很详细,很有用,mark,关注楼主了!希望楼主能多写Golang相关的文章。
- 2023-03-13 18:17:06
-
- 优美的猎豹
- 很详细,mark,感谢楼主的这篇博文,我会继续支持!
- 2023-03-10 11:50:45
-
- 害怕的花瓣
- 太细致了,码住,感谢大佬的这篇文章内容,我会继续支持!
- 2023-03-05 06:32:02
-
- 要减肥的铅笔
- 这篇文章内容出现的刚刚好,细节满满,受益颇多,收藏了,关注楼主了!希望楼主能多写Golang相关的文章。
- 2023-03-03 21:37:30
-
- 曾经的百褶裙
- 这篇技术贴出现的刚刚好,作者大大加油!
- 2023-03-03 11:50:46
-
- 香蕉黑夜
- 赞 👍👍,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,看完之后很有帮助,总算是懂了,感谢博主分享技术贴!
- 2023-03-02 00:05:44
查看更多
最新文章
-
- Golang · Go教程 | 34分钟前 |
- DebianSyslog在虚拟机中的实用攻略
- 467浏览 收藏
-
- Golang · Go教程 | 8小时前 |
- DebianOpenSSL安装失败的终极解决方案
- 501浏览 收藏
-
- Golang · Go教程 | 9小时前 |
- Debian数据快速提取技巧
- 216浏览 收藏
-
- Golang · Go教程 | 12小时前 |
- Debian系统JS依赖管理终极攻略
- 218浏览 收藏
-
- Golang · Go教程 | 14小时前 |
- Debian上Hadoop作业调度实用技巧
- 100浏览 收藏
-
- Golang · Go教程 | 14小时前 |
- Go语言闭包误区与匿名函数深度解析
- 222浏览 收藏
-
- Golang · Go教程 | 14小时前 |
- Debian系统安全回收数据的正确攻略
- 111浏览 收藏
查看更多
课程推荐
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 484次学习
查看更多
AI推荐
-
- 笔灵AI生成答辩PPT
- 探索笔灵AI生成答辩PPT的强大功能,快速制作高质量答辩PPT。精准内容提取、多样模板匹配、数据可视化、配套自述稿生成,让您的学术和职场展示更加专业与高效。
- 15次使用
-
- 知网AIGC检测服务系统
- 知网AIGC检测服务系统,专注于检测学术文本中的疑似AI生成内容。依托知网海量高质量文献资源,结合先进的“知识增强AIGC检测技术”,系统能够从语言模式和语义逻辑两方面精准识别AI生成内容,适用于学术研究、教育和企业领域,确保文本的真实性和原创性。
- 24次使用
-
- AIGC检测-Aibiye
- AIbiye官网推出的AIGC检测服务,专注于检测ChatGPT、Gemini、Claude等AIGC工具生成的文本,帮助用户确保论文的原创性和学术规范。支持txt和doc(x)格式,检测范围为论文正文,提供高准确性和便捷的用户体验。
- 30次使用
-
- 易笔AI论文
- 易笔AI论文平台提供自动写作、格式校对、查重检测等功能,支持多种学术领域的论文生成。价格优惠,界面友好,操作简便,适用于学术研究者、学生及论文辅导机构。
- 42次使用
-
- 笔启AI论文写作平台
- 笔启AI论文写作平台提供多类型论文生成服务,支持多语言写作,满足学术研究者、学生和职场人士的需求。平台采用AI 4.0版本,确保论文质量和原创性,并提供查重保障和隐私保护。
- 35次使用
查看更多
相关文章
-
- Golang 编写Tcp服务器的解决方案
- 2022-12-26 102浏览
-
- Go 语言实现 HTTP 文件上传和下载
- 2023-01-19 235浏览
-
- GO语言实现文件上传的示例代码
- 2022-12-23 475浏览
-
- Go实现文件分片上传
- 2023-01-07 181浏览
-
- Go Web编程添加服务器错误和访问日志
- 2023-01-01 347浏览