广告位联系
返回顶部
分享到

基于C#实现一个简单的FTP操作工具

C#教程 来源:互联网 作者:佚名 发布时间:2022-08-30 21:37:54 人浏览
摘要

实现功能 实现使用FTP上传、下载、重命名、刷新、删除功能 开发环境 开发工具: Visual Studio 2013 .NET Framework版本:4.5 实现代码 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

实现功能

实现使用FTP上传、下载、重命名、刷新、删除功能

开发环境

开发工具: Visual Studio 2013

.NET Framework版本:4.5

实现代码

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

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

/*FTP操作公共类*/

 

private string FtpIp, FtpPort, FtpUser, FtpPwd, FtpUrl;

 

private FTPUtil()

{

 

}

 

public FTPUtil(string ftpIp, string ftpPort, string ftpUser, string ftpPwd)

{

    FtpIp = ftpIp;

    FtpPort = ftpPort;

    FtpUser = ftpUser;

    FtpPwd = ftpPwd;

 

    FtpUrl = "ftp://" + ftpIp + ":" + ftpPort + "/";

}

 

private FtpWebRequest GetFtpWebRequest(string path, string method)

{

    FtpWebRequest Ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri(FtpUrl + "/" + path));

    Ftp.Credentials = new NetworkCredential(FtpUser, FtpPwd);

    Ftp.KeepAlive = false;

    Ftp.UsePassive = true;

    Ftp.Method = method;

    return Ftp;

}

 

/// <summary>

/// 获取路径下所有文件夹

/// </summary>

/// <param name="dirName"></param>

/// <returns></returns>

public List<FileModel> GetDirs(string dirName)

{

    return GetAllFiles(dirName).FindAll(s => s.Type == "文件夹");

}

 

/// <summary>

/// 获取路径下所有文件

/// </summary>

/// <param name="dirName"></param>

/// <returns></returns>

public List<FileModel> GetFiles(string dirName)

{

    return GetAllFiles(dirName).FindAll(s => s.Type == "文件");

}

 

/// <summary>

/// 获取路径下所有项目

/// </summary>

/// <param name="dirName"></param>

/// <returns></returns>

public List<FileModel> GetAllFiles(string dirName)

{

    List<FileModel> fileList = new List<FileModel>();

    try

    {

        FtpWebRequest Ftp = GetFtpWebRequest(dirName, WebRequestMethods.Ftp.ListDirectoryDetails);

 

        using (WebResponse response = Ftp.GetResponse())

        {

            using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))

            {

                string line = "";

                while ((line = reader.ReadLine()) != null)

                {

                    fileList.Add(ConvertFile(line, dirName));

                }

            }

        }

    }

    catch (Exception ex)

    {

        throw ex;

    }

    return fileList;

}

 

/// <summary>

/// FTP文件信息转换

/// </summary>

/// <param name="value"></param>

/// <param name="dirName"></param>

/// <returns></returns>

private FileModel ConvertFile(string value, string dirName)

{

    string[] arr = value.Split(new string[] { " " },4, StringSplitOptions.RemoveEmptyEntries);

 

   FileModel model = new FileModel();

    model.Date = arr[0];

    model.Time = arr[1];

    if (arr[2] == "<DIR>")

    {

        model.Type = "文件夹";

        model.Size = 0;

    }

    else

    {

        model.Type = "文件";

        model.Size = Convert.ToInt64(arr[2]);

    }

    model.Name = arr[3];

    model.FullName = dirName + "/" + model.Name;

    return model;

}

 

/// <summary>

/// 上传

/// </summary>

/// <param name="fileName"></param>

/// <param name="desFile"></param>

public void Upload(string fileName, string desFile)

{

    try

    {

        FileInfo fileInfo = new FileInfo(fileName);

 

        FtpWebRequest Ftp = GetFtpWebRequest(desFile, WebRequestMethods.Ftp.UploadFile);

        Ftp.UseBinary = true;

        Ftp.ContentLength = fileInfo.Length;

 

 

        int buffLength = 2048;

        byte[] buff = new byte[buffLength];

        int len = 0;

        using (FileStream fs = fileInfo.OpenRead())

        {

            using (Stream stream = Ftp.GetRequestStream())

            {

                while ((len = fs.Read(buff, 0, buffLength)) != 0)

                {

                    stream.Write(buff, 0, buffLength);

                }

            }

        }

    }

    catch (Exception ex)

    {

        throw ex;

    }

 

 

}

 

/// <summary>

/// 下载

/// </summary>

/// <param name="fileName"></param>

/// <param name="desFile"></param>

public void DownLoad(string fileName, string desFile)

{

    try

    {

        FtpWebRequest Ftp = GetFtpWebRequest(fileName, WebRequestMethods.Ftp.DownloadFile);

        Ftp.UseBinary = true;

 

        FtpWebResponse response = (FtpWebResponse)Ftp.GetResponse();

        int buffLength = 2048;

        byte[] buff = new byte[buffLength];

        int len = 0;

        using (FileStream fs = new FileStream(desFile, FileMode.Create))

        {

            using (Stream stream = response.GetResponseStream())

            {

                while ((len = stream.Read(buff, 0, buffLength)) != 0)

                {

                    fs.Write(buff, 0, buffLength);

                }

            }

        }

    }

    catch (Exception ex)

    {

        throw ex;

    }

}

 

/// <summary>

/// 删除文件

/// </summary>

/// <param name="fileName"></param>

public void DeleteFile(string fileName)

{

    try

    {

        FtpWebRequest Ftp = GetFtpWebRequest(fileName, WebRequestMethods.Ftp.DeleteFile);

 

        FtpWebResponse response = (FtpWebResponse)Ftp.GetResponse();

 

        using (Stream datastream = response.GetResponseStream())

        {

            using (StreamReader sr = new StreamReader(datastream))

            {

                sr.ReadToEnd();

            }

        }

    }

    catch (Exception ex)

    {

        throw ex;

    }

}

 

 

/// <summary>

/// 重命名

/// </summary>

/// <param name="fileName"></param>

/// <param name="newName"></param>

public void ReName(string fileName, string newName)

{

    try

    {

        FtpWebRequest Ftp = GetFtpWebRequest(fileName, WebRequestMethods.Ftp.Rename);

        Ftp.RenameTo = newName;

        Ftp.UseBinary = true;

 

        FtpWebResponse response = (FtpWebResponse)Ftp.GetResponse();

 

        using (Stream datastream = response.GetResponseStream())

        {

            using (StreamReader sr = new StreamReader(datastream))

            {

                sr.ReadToEnd();

            }

        }

    }

    catch (Exception ex)

    {

        throw ex;

    }

}

实现效果

FTP 操作工具视频演示 https://www.ixigua.com/7041474410389176844


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/qq_27410185/article/details/124608445
相关文章
  • WPF实现窗体亚克力效果的代码

    WPF实现窗体亚克力效果的代码
    WPF 窗体设置亚克力效果 框架使用大于等于.NET40。 Visual Studio 2022。 项目使用MIT开源许可协议。 WindowAcrylicBlur设置亚克力颜色。 Opacity设置透
  • C#非托管泄漏中HEAP_ENTRY的Size对不上解析

    C#非托管泄漏中HEAP_ENTRY的Size对不上解析
    一:背景 1. 讲故事 前段时间有位朋友在分析他的非托管泄漏时,发现NT堆的_HEAP_ENTRY的 Size 和!heap命令中的 Size 对不上,来咨询是怎么回事?
  • C#中ArrayList 类的使用介绍
    一:ArrayList 类简单说明 动态数组ArrayList类在System.Collecions的命名空间下,所以使用时要加入System.Collecions命名空间,而且ArrayList提供添加,
  • C#使用BinaryFormatter类、ISerializable接口、XmlSeriali

    C#使用BinaryFormatter类、ISerializable接口、XmlSeriali
    序列化是将对象转换成字节流的过程,反序列化是把字节流转换成对象的过程。对象一旦被序列化,就可以把对象状态保存到硬盘的某个位
  • C#序列化与反序列化集合对象并进行版本控制
    当涉及到跨进程甚至是跨域传输数据的时候,我们需要把对象序列化和反序列化。 首先可以使用Serializable特性。 1 2 3 4 5 6 7 8 9 10 11 12 13 14
  • C#事件中关于sender的用法解读

    C#事件中关于sender的用法解读
    C#事件sender的小用法 开WPF新坑了,看了WPF的炫酷界面,再看看winForm实在是有些惨不忍睹(逃)。后面会开始写一些短的学习笔记。 一、什么
  • 在C#程序中注入恶意DLL的方法

    在C#程序中注入恶意DLL的方法
    一、背景 前段时间在训练营上课的时候就有朋友提到一个问题,为什么 Windbg 附加到 C# 程序后,程序就处于中断状态了?它到底是如何实现
  • 基于C#实现一个简单的FTP操作工具
    实现功能 实现使用FTP上传、下载、重命名、刷新、删除功能 开发环境 开发工具: Visual Studio 2013 .NET Framework版本:4.5 实现代码 1 2 3 4 5 6 7
  • C#仿QQ实现简单的截图功能

    C#仿QQ实现简单的截图功能
    接上一篇写的截取电脑屏幕,我们在原来的基础上加一个选择区域的功能,实现自定义选择截图。 个人比较懒,上一篇的代码就不重新设计
  • C#实现线性查找算法的介绍
    线性查找,肯定是以线性的方式,在集合或数组中查找某个元素。 通过代码来理解线性查找 什么叫线性?还是在代码中体会吧。 首先需要一
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计