C# 使用Renci.SshNet.dll操作SFTP,实现数据传输

1、Renci.SshNet.dll下载链接: https://download.csdn.net/download/yigu4011/87959164

2、SFTP操作帮助类:

public class SFTPHelper
    {
        #region 字段或属性
        private SftpClient sftp;
        /// 
        /// SFTP连接状态
        /// 
        public bool Connected { get { return sftp.IsConnected; } }
        #endregion

        #region 构造
        /// 
        /// 构造
        /// 
        /// IP
        /// 端口
        /// 用户名
        /// 密码
        public SFTPHelper(string ip, string user, string pwd, string port = "22")
        {
            sftp = new SftpClient(ip, Int32.Parse(port), user, pwd);
            Connect();
        }

        ~SFTPHelper()
        {
            Disconnect();
        }
        #endregion

        #region 连接SFTP
        /// 
        /// 连接SFTP
        /// 
        /// true成功
        public bool Connect()
        {
            try
            {
                if (!Connected)
                {
                    sftp.Connect();
                }
                return true;
            }
            catch (Exception ex)
            {
                throw new Exception(string.Format("连接SFTP失败,原因:{0}", ex.Message));
            }
        }
        #endregion

        #region 断开SFTP
        /// 
        /// 断开SFTP
        ///  
        public void Disconnect()
        {
            try
            {
                if (sftp != null && Connected)
                {
                    sftp.Disconnect();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(string.Format("断开SFTP失败,原因:{0}", ex.Message));
            }
        }
        #endregion

        #region SFTP上传文件
        /// 
        /// SFTP上传文件
        /// 
        /// 本地文件全路径 例:G:\\Project\\logo.png
        /// 远程路径  例:/logo.png
        public bool Put(string localPath, string remotePath)
        {
            try
            {
                using (var file = File.OpenRead(localPath))
                {
                    Connect();
                    sftp.UploadFile(file, remotePath);
                    Disconnect();
                }
                return true;
            }
            catch (Exception ex)
            {
                return false;
            }
        }
        #endregion

        #region SFTP获取文件
        /// 
        /// SFTP获取文件
        /// 
        /// 远程路径
        /// 本地路径
        public void Get(string remotePath, string localPath)
        {
            try
            {
                Connect();
                var byt = sftp.ReadAllBytes(remotePath);
                Disconnect();
                File.WriteAllBytes(localPath, byt);
            }
            catch (Exception ex)
            {
                throw new Exception(string.Format("SFTP文件获取失败,原因:{0}", ex.Message));

            }

        }
        #endregion

        #region 删除SFTP文件
        /// 
        /// 删除SFTP文件 
        /// 
        /// 远程路径
        public void Delete(string remoteFile)
        {
            try
            {
                Connect();
                sftp.Delete(remoteFile);
                Disconnect();
            }
            catch (Exception ex)
            {
                throw new Exception(string.Format("SFTP文件删除失败,原因:{0}", ex.Message));
            }
        }
        #endregion



    }

调用:

1、上传文件:

private void UploadLabel(string remotePath, string localFile, string remoteFileName)
        {
            SFTPHelper sftp = new SFTPHelper(labelServerInfo.LabelServerIp, labelServerInfo.LabelServerUser, labelServerInfo.LabelServerPassWord,labelServerInfo.LabelServerPort);
            if (!sftp.CheckDirectoryExist(sftp.RemotePath, remotePath))
            {
                string remotepath = "/" + remotePath + "/";
                
                if (!sftp.MakeDirectory(remotepath))
                {
                    AppendTextColorful("Create Remote Path Error,Path already exists", Color.Orange, true);
                }
            }
            else
            {
                string remotepath = "/" + remotePath + "/";
                sftp.RemotePath = remotepath;
            }
            sftp.RemotePath = "/" + remotePath + "/";

            if (sftp.CheckFileExist(remoteFileName))
            {
                if (DialogResult.Yes != MessageBox.Show("Remote File is Exist, Override ?", "Message:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)) { return; }
                if (!sftp.Delete(sftp.RemotePath + remoteFileName))
                {
                    AppendTextColorful("Delete Remote File Error", Color.Red, true);
                }
                if (!sftp.Put(localFile, sftp.RemotePath + remoteFileName))
                {
                    AppendTextColorful("Upload Remote File Error", Color.Red, true);
                }
                else
                {
                    AppendTextColorful("Upload Remote File OK", Color.Blue, true);
                }
            }
            else
            {
                if (!sftp.Put(localFile, sftp.RemotePath + remoteFileName))
                {
                    AppendTextColorful("Upload Remote File Error", Color.Red, true);
                }
                else
                {
                    AppendTextColorful("Upload Remote File OK", Color.Blue, true);
                }
            }
        }

2、下载文件:

private void DownLoadLabel(string remotePath,string remoteFile,string localFileName)
        {
            try
            {
                SFTPHelper sftp = new SFTPHelper(labelServerInfo.LabelServerIp, labelServerInfo.LabelServerUser, labelServerInfo.LabelServerPassWord, labelServerInfo.LabelServerPort);
                sftp.RemotePath = "/" + remotePath + "/";

                if (!sftp.CheckFileExist(remoteFile))
                {
                    AppendTextColorful("Remote File Not Exist", Color.Red, true);
                    return;
                }

                if (!sftp.Get(sftp.RemotePath+remoteFile, localFileName))
                {
                    AppendTextColorful("Download Remote File Error", Color.Red, true);
                }
                else
                {
                    AppendTextColorful("Download Remote File OK", Color.Blue, true);

                }
            }
            catch (Exception ex) { AppendTextColorful(ex.Message, Color.Red, true); }
        }

你可能感兴趣的:(FTP,c#)