我是靠谱客的博主 着急橘子,最近开发中收集的这篇文章主要介绍.NetCore使用Renci.SshNet连接SSH将文件传输上去远程Linux服务器,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

        //linux服务器ip
        private static string host = Appsettings.app(new string[] { "FTPConfig", "FtpIp" });
        //linux服务器登录名
        private static string username = Appsettings.app(new string[] { "FTPConfig", "UserName" });
        //linux服务器密码
        private static string password = Appsettings.app(new string[] { "FTPConfig", "Password" });
         //linux服务器文件存放路径
        private static string UploadPath = Appsettings.app(new string[] { "FTPConfig", "UploadPath" });
        //linux服务器端口
        private static int Port = Appsettings.app(new string[] { "FTPConfig", "Port" }).CastToInt32(); 
        /// <summary>
        /// 上传文件
        /// </summary>
        /// <param name="formFile">文件流</param>
        /// <param name="Path">分类文件名称</param>
        /// <returns></returns>
        public static ReultMessage Upload(IFormFile formFile, string Path)
        {
            Stream stream = null;
            try
            {
                var Extension = Path.GetExtension(formFile.FileName).ToLower();
                if (Extension == ".docx" || Extension == ".pdf")
                {
                    var fileName = $"{formFile.FileName.Replace(Extension, "")}{DateTime.Now.ToString("yyyyMMddhhmmss")}{Extension}";
                    var Paths = UploadPath + Path+ "/" + DateTime.Now.ToString("yyyyMM") + "/";
                    Paths = Path.Combine(Paths);
                    stream = formFile.OpenReadStream();
                    var connectionInfo = new Renci.SshNet.ConnectionInfo(host, Port, username, new PasswordAuthenticationMethod(username, password));
                    using (var sftp = new SftpClient(connectionInfo))
                    {
                        sftp.Connect();
                        if (!sftp.Exists(Paths))
                        {
                            sftp.CreateDirectory(Paths);
                        }
                        sftp.ChangeDirectory(Paths);
                        sftp.UploadFile(stream, fileName, true);
                        sftp.Disconnect();
                        sftp.Dispose();
                    }
                    return new ReultMessage
                    {
                        code = 0,
                        message = "上传成功",
                        data = (Paths + fileName)
                    };
                }
                else
                {
                    return new ReultMessage
                    {
                        code = 1,
                        message = "文件格式不正确"
                    };
                }
            }
            catch (Exception ex)
            {
                return new ReultMessage
                {
                    code = 2,
                    message = ex.Message.ToString()
                };
            }
            finally
            {
                stream.Close();
                stream.Dispose();
            }
        }

注意:1、需要NuGet包SSH.NET 2、Linux服务器要安装SSH

最后

以上就是着急橘子为你收集整理的.NetCore使用Renci.SshNet连接SSH将文件传输上去远程Linux服务器的全部内容,希望文章能够帮你解决.NetCore使用Renci.SshNet连接SSH将文件传输上去远程Linux服务器所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部