gpt4 book ai didi

C#利用SFTP实现上传下载

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 32 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C#利用SFTP实现上传下载由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

sftp是ftp协议的升级版本,是牺牲上传速度为代价,换取安全性能,本人开始尝试使用Tamir.SharpSSH.dll但它对新版本的openssh 不支持,所有采用Ssh.Net方式 需要依赖:Renci.SshNet.dll 下载链接 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/// <summary>
   /// SFTP操作类
   /// </summary>
   public class SFTPHelper
   {
     #region 字段或属性
     private SftpClient sftp;
     /// <summary>
     /// SFTP连接状态
     /// </summary>
     public bool Connected { get { return sftp.IsConnected; } }
     #endregion
 
     #region 构造
     /// <summary>
     /// 构造
     /// </summary>
     /// <param name="ip">IP</param>
     /// <param name="port">端口</param>
     /// <param name="user">用户名</param>
     /// <param name="pwd">密码</param>
     public SFTPHelper( string ip, string port, string user, string pwd)
     {
       sftp = new SftpClient(ip, Int32.Parse(port), user, pwd);
     }
     #endregion
 
     #region 连接SFTP
     /// <summary>
     /// 连接SFTP
     /// </summary>
     /// <returns>true成功</returns>
     public bool Connect()
     {
       try
       {
         if (!Connected)
         {
           sftp.Connect();
         }
         return true ;
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("连接SFTP失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "连接SFTP失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
     #region 断开SFTP
     /// <summary>
     /// 断开SFTP
     /// </summary>
     public void Disconnect()
     {
       try
       {
         if (sftp != null && Connected)
         {
           sftp.Disconnect();
         }
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("断开SFTP失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "断开SFTP失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
     #region SFTP上传文件
     /// <summary>
     /// SFTP上传文件
     /// </summary>
     /// <param name="localPath">本地路径</param>
     /// <param name="remotePath">远程路径</param>
     public void Put( string localPath, string remotePath)
     {
       try
       {
         using (var file = File.OpenRead(localPath))
         {
           Connect();
           sftp.UploadFile(file, remotePath);
           Disconnect();
         }
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("SFTP文件上传失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "SFTP文件上传失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
     #region SFTP获取文件
     /// <summary>
     /// SFTP获取文件
     /// </summary>
     /// <param name="remotePath">远程路径</param>
     /// <param name="localPath">本地路径</param>
     public void Get( string remotePath, string localPath)
     {
       try
       {
         Connect();
         var byt = sftp.ReadAllBytes(remotePath);
         Disconnect();
         File.WriteAllBytes(localPath, byt);
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("SFTP文件获取失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "SFTP文件获取失败,原因:{0}" , ex.Message));
       }
 
     }
     #endregion
 
     #region 删除SFTP文件
     /// <summary>
     /// 删除SFTP文件
     /// </summary>
     /// <param name="remoteFile">远程路径</param>
     public void Delete( string remoteFile)
     {
       try
       {
         Connect();
         sftp.Delete(remoteFile);
         Disconnect();
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("SFTP文件删除失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "SFTP文件删除失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
     #region 获取SFTP文件列表
     /// <summary>
     /// 获取SFTP文件列表
     /// </summary>
     /// <param name="remotePath">远程目录</param>
     /// <param name="fileSuffix">文件后缀</param>
     /// <returns></returns>
     public ArrayList GetFileList( string remotePath, string fileSuffix)
     {
       try
       {
         Connect();
         var files = sftp.ListDirectory(remotePath);
         Disconnect();
         var objList = new ArrayList();
         foreach (var file in files)
         {
           string name = file.Name;
           if (name.Length > (fileSuffix.Length + 1) && fileSuffix == name.Substring(name.Length - fileSuffix.Length))
           {
             objList.Add(name);
           }
         }
         return objList;
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("SFTP文件列表获取失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "SFTP文件列表获取失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
     #region 移动SFTP文件
     /// <summary>
     /// 移动SFTP文件
     /// </summary>
     /// <param name="oldRemotePath">旧远程路径</param>
     /// <param name="newRemotePath">新远程路径</param>
     public void Move( string oldRemotePath, string newRemotePath)
     {
       try
       {
         Connect();
         sftp.RenameFile(oldRemotePath, newRemotePath);
         Disconnect();
       }
       catch (Exception ex)
       {
         // TxtLog.WriteTxt(CommonMethod.GetProgramName(), string.Format("SFTP文件移动失败,原因:{0}", ex.Message));
         throw new Exception( string .Format( "SFTP文件移动失败,原因:{0}" , ex.Message));
       }
     }
     #endregion
 
   }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:http://www.cnblogs.com/cbread/p/6202069.html 。

最后此篇关于C#利用SFTP实现上传下载的文章就讲到这里了,如果你想了解更多关于C#利用SFTP实现上传下载的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com