class FTP_Class

{

string ftpServerIP;

string ftpUserID;

string ftpPassword;

FtpWebRequest reqFTP;

#region 连接

/// <summary>

/// 连接FtpWebRequest

/// </summary>

/// <param name="path"></param>

private void Connect(String path)//连接ftp

{

// 根据uri创建FtpWebRequest对象

reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(path));

// 指定数据传输类型

reqFTP.UseBinary = true;

// ftp用户名和密码

reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);

}

#endregion

#region ftp登录信息

/// <summary>

/// ftp登录信息

/// </summary>

/// <param name="ftpServerIP">FtpIP地址</param>

/// <param name="ftpUserID">ftp用户名</param>

/// <param name="ftpPassword">ftp密码</param>

public void FtpUpDown(string ftpServerIP, string ftpUserID, string ftpPassword)

{

this.ftpServerIP = ftpServerIP;

this.ftpUserID = ftpUserID;

this.ftpPassword = ftpPassword;

}

#endregion

#region 获取文件列表

/// <summary>

/// 上面的代码示例了如何从ftp服务器上获得文件列表

/// </summary>

/// <param name="path">URL路径</param>

/// <param name="WRMethods"></param>

/// <returns>String[] </returns>

private string[] GetFileList(string path, string WRMethods) //内部方法

{

string[] downloadFiles;

StringBuilder result = new StringBuilder();

try

{

Connect(path);

reqFTP.Method = WRMethods;

WebResponse response = reqFTP.GetResponse();

StreamReader reader = new StreamReader(response.GetResponseStream(), System.Text.Encoding.UTF8);//中文文件名

string line = reader.ReadLine();

while (line != null)

{

result.Append(line);

result.Append("\n");

line = reader.ReadLine(); //读取下一行

}

result.Remove(result.ToString().LastIndexOf('\n'), 1);

reader.Close();

response.Close();

return result.ToString().Split('\n');

}

catch (Exception ex)

{

Console.WriteLine(ex.Message);

downloadFiles = null;

return downloadFiles;

}

}

/// <summary>

///根据知道的文件路径得到文件列表

/// </summary>

/// <param name="path"></param>

/// <returns></returns>

public string[] GetFileList(string path)

{

return GetFileList("ftp://" + ftpServerIP + "/" + path, WebRequestMethods.Ftp.ListDirectory);

}

/// <summary>

/// 默认URl文件列表

/// </summary>

/// <returns></returns>

public string[] GetFileList()

{

return GetFileList("ftp://" + ftpServerIP + "/", WebRequestMethods.Ftp.ListDirectory);

}

#endregion

#region 上传文件

/// <summary>

///从ftp服务器上载文件的功能

/// </summary>

/// <param name="filename">要上传的文件</param>

/// <param name="path">上传的路径</param>

/// <param name="errorinfo">返回信息</param>

/// <returns></returns>

public bool Upload(string filename, string path, out string errorinfo)

{

path = path.Replace("\\", "/");

FileInfo fileInf = new FileInfo(filename);

string uri = "ftp://" + path + "/" + fileInf.Name;

Connect(uri);//连接

// 默认为true,连接不会被关闭

// 在一个命令之后被执行

reqFTP.KeepAlive = false;

// 指定执行什么命令

reqFTP.Method = WebRequestMethods.Ftp.UploadFile;

// 上传文件时通知服务器文件的大小

reqFTP.ContentLength = fileInf.Length;

// 缓冲大小设置为kb

int buffLength = 2048;

byte[] buff = new byte[buffLength];

int contentLen;

// 打开一个文件流(System.IO.FileStream) 去读上传的文件

FileStream fs = fileInf.OpenRead();

try

{

// 把上传的文件写入流

Stream strm = reqFTP.GetRequestStream();

// 每次读文件流的kb

contentLen = fs.Read(buff, 0, buffLength);

// 流内容没有结束

while (contentLen != 0)

{

// 把内容从file stream 写入upload stream

strm.Write(buff, 0, contentLen);

contentLen = fs.Read(buff, 0, buffLength);

}

// 关闭两个流

strm.Close();

fs.Close();

errorinfo = "完成";

return true;

}

catch (Exception ex)

{

errorinfo = string.Format("因{0},无法完成上传", ex.Message);

return false;

}

}

#endregion

#region 续传文件

/// <summary>

/// 续传文件

/// </summary>

/// <param name="filename">文件名</param>

/// <param name="size">文件的大小</param>

/// <param name="path">路径</param>

/// <param name="errorinfo">返回信息</param>

/// <returns></returns>

public bool Upload(string filename, long size, string path, out string errorinfo)

{

path = path.Replace("\\", "/");

FileInfo fileInf = new FileInfo(filename);

//string uri = "ftp://" + path + "/" + fileInf.Name;

string uri = "ftp://" + path;

Connect(uri);//连接

// 默认为true,连接不会被关闭

// 在一个命令之后被执行

reqFTP.KeepAlive = false;

// 指定执行什么命令

reqFTP.Method = WebRequestMethods.Ftp.AppendFile;

// 上传文件时通知服务器文件的大小

reqFTP.ContentLength = fileInf.Length;

// 缓冲大小设置为kb

int buffLength = 2048;

byte[] buff = new byte[buffLength];

int contentLen;

// 打开一个文件流(System.IO.FileStream) 去读上传的文件

FileStream fs = fileInf.OpenRead();

try

{

StreamReader dsad = new StreamReader(fs);

fs.Seek(size, SeekOrigin.Begin);

// 把上传的文件写入流

Stream strm = reqFTP.GetRequestStream();

// 每次读文件流的kb

contentLen = fs.Read(buff, 0, buffLength);

// 流内容没有结束

while (contentLen != 0)

{

// 把内容从file stream 写入upload stream

strm.Write(buff, 0, contentLen);

contentLen = fs.Read(buff, 0, buffLength);

}

// 关闭两个流

strm.Close();

fs.Close();

errorinfo = "完成";

return true;

}

catch (Exception ex)

{

errorinfo = string.Format("因{0},无法完成上传", ex.Message);

return false;

}

}

#endregion

#region 下载文件

/// <summary>

/// 上面的代码实现了从ftp服务器下载文件的功能

/// </summary>

/// <param name="filePath">文件</param>

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

/// <param name="errorinfo"></param>

/// <returns></returns>

public bool Download(string ftpfilepath, string filePath, string fileName, out string errorinfo)

{

try

{

filePath = filePath.Replace("我的电脑\\", "");

String onlyFileName = Path.GetFileName(fileName);

string newFileName = filePath + onlyFileName;

if (File.Exists(newFileName))

{

errorinfo = string.Format("本地文件{0}已存在,无法下载", newFileName);

return false;

}

ftpfilepath = ftpfilepath.Replace("\\", "/");

string url = "ftp://" + ftpfilepath;

Connect(url);//连接

reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);

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

Stream ftpStream = response.GetResponseStream();

long cl = response.ContentLength;

int bufferSize = 2048;

int readCount;

byte[] buffer = new byte[bufferSize];

readCount = ftpStream.Read(buffer, 0, bufferSize);

FileStream outputStream = new FileStream(newFileName, FileMode.Create);

while (readCount > 0)

{

outputStream.Write(buffer, 0, readCount);

readCount = ftpStream.Read(buffer, 0, bufferSize);

}

ftpStream.Close();

outputStream.Close();

response.Close();

errorinfo = "";

return true;

}

catch (Exception ex)

{

errorinfo = string.Format("因{0},无法下载", ex.Message);

return false;

}

}

#endregion

#region 删除文件

/// <summary>

/// 删除文件

/// </summary>

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

public void DeleteFileName(string fileName)

{

try

{

FileInfo fileInf = new FileInfo(fileName);

string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;

Connect(uri);//连接

// 默认为true,连接不会被关闭

// 在一个命令之后被执行

reqFTP.KeepAlive = false;

// 指定执行什么命令

reqFTP.Method = WebRequestMethods.Ftp.DeleteFile;

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

response.Close();

}

catch (Exception ex)

{

//MessageBox.Show(ex.Message, "删除错误");

}

}

#endregion

#region 在ftp上创建目录

/// <summary>

/// 在ftp上创建目录

/// </summary>

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

public void MakeDir(string dirName)

{

try

{

string uri = "ftp://" + ftpServerIP + "/" + dirName;

Connect(uri);//连接

reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory;

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

response.Close();

}

catch (Exception ex)

{

// MessageBox.Show(ex.Message);

}

}

#endregion

#region 删除ftp上目录

/// <summary>

/// 删除ftp上目录

/// </summary>

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

public void delDir(string dirName)

{

try

{

string uri = "ftp://" + ftpServerIP + "/" + dirName;

Connect(uri);//连接

reqFTP.Method = WebRequestMethods.Ftp.RemoveDirectory;

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

response.Close();

}

catch (Exception ex)

{

// MessageBox.Show(ex.Message);

}

}

#endregion

#region 获得ftp上文件大小

/// <summary>

/// 获得ftp上文件大小

/// </summary>

/// <param name="filename"></param>

/// <returns></returns>

public long GetFileSize(string filename)

{

long fileSize = 0;

filename = filename.Replace("\\", "/");

try

{

// FileInfo fileInf = new FileInfo(filename);

//string uri1 = "ftp://" + ftpServerIP + "/" + fileInf.Name;

// string uri = filename;

string uri = "ftp://" + filename;

Connect(uri);//连接

reqFTP.Method = WebRequestMethods.Ftp.GetFileSize;

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

fileSize = response.ContentLength;

response.Close();

}

catch (Exception ex)

{

// MessageBox.Show(ex.Message);

}

return fileSize;

}

#endregion

#region ftp上文件改名

/// <summary>

/// ftp上文件改名

/// </summary>

/// <param name="currentFilename"></param>

/// <param name="newFilename"></param>

public void Rename(string currentFilename, string newFilename)

{

try

{

FileInfo fileInf = new FileInfo(currentFilename);

string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;

Connect(uri);//连接

reqFTP.Method = WebRequestMethods.Ftp.Rename;

reqFTP.RenameTo = newFilename;

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

//Stream ftpStream = response.GetResponseStream();

//ftpStream.Close();

response.Close();

}

catch (Exception ex)

{

// MessageBox.Show(ex.Message);

}

}

#endregion

#region 获得文件明晰

/// <summary>

/// 获得文件明晰

/// </summary>

/// <returns></returns>

public string[] GetFilesDetailList()

{

return GetFileList("ftp://" + ftpServerIP + "/", WebRequestMethods.Ftp.ListDirectoryDetails);

}

/// <summary>

/// 获得文件明晰

/// </summary>

/// <param name="path"></param>

/// <returns></returns>

public string[] GetFilesDetailList(string path)

{

path = path.Replace("\\", "/");

return GetFileList("ftp://" + path, WebRequestMethods.Ftp.ListDirectoryDetails);

}

#endregion

}

C# FTP操作类库相关推荐

  1. [转]文件传输协议(FTP)操作(上传,下载,新建,删除,FTP间传送文件等)实现汇总1

    转自:http://blog.csdn.net/soarheaven/archive/2008/12/08/3474152.aspx 最近项目需要对FTP服务器进行操作,现把实现总结如下: 打算分2篇 ...

  2. python采集修改原创_python应用系列教程——python中ftp操作:连接、登录、获取目录,重定向、上传下载,删除更改...

    python中ftp操作: ftp=FTP() #设置变量 ftp.set_debuglevel(2) #打开调试级别2,显示详细信息 ftp.connect("IP"," ...

  3. PHP FTP操作类( 上传、拷贝、移动、删除文件/创建目录 )

    /** * 作用:FTP操作类( 拷贝.移动.删除文件/创建目录 ) * 时间:2006/5/9 * 作者:欣然随风 * QQ:276624915 */ class class_ftp {public ...

  4. VB FTP操作类(可上传、下载、创建文件夹等等)

    可实现FTP上传下载,建文件夹等功能,从网上找了一个类,对其进行修改和功能补充,正常使用,非常方便. 切记在使用FtpFindFirstFile 函数查找相应的文件或文件夹后,要使用InternetC ...

  5. Microsoft .NET Framework 2.0对文件传输协议(FTP)操作(上传,下载,新建,删除,FTP间传送文件等)实现汇总1...

    相关文章导航 Sql Server2005 Transact-SQL 新兵器学习总结之-总结 Flex,Fms3相关文章索引 FlexAir开源版-全球免费多人视频聊天室,免费网络远程多人视频会议系统 ...

  6. python应用系列教程——python中ftp操作:连接、登录、获取目录,重定向、上传下载,删除更改

    全栈工程师开发手册 (作者:栾鹏) python教程全解 python中ftp操作: ftp=FTP() #设置变量 ftp.set_debuglevel(2) #打开调试级别2,显示详细信息 ftp ...

  7. php ezsql,ezSQL PHP数据库操作类库

    ezSQL PHP数据库操作类库 ezSQL 下载地址: 下载 : ezSQL 新版本是2.05添加了很多支持,包括 CodeIgniter,MSSQL, PDO 等等 我之前也为 CodeIgnit ...

  8. C# FTP操作(上传、下载等……)

    因为工作中经常涉及到FTP文件的上传和下载,每次有这样的需求时都要重复编写相同的代码,后来干脆整理一个FTPClass,这样不仅方便自己使用,也可以共享给部门其它同事,使用时直接调用就可以了,节省了大 ...

  9. Ftp操作报错:TODO: INTERNET_ERROR_* need message mappings 12014

    今天执行各种Ftp操作时,偶然遇到以下问题: "TODO: INTERNET_ERROR_* need message mappings 12014" 经查阅发现,与应用服务器在同 ...

最新文章

  1. 提交表单自动刷新_Web自动化测试:元素的基础操作和浏览器基础操作
  2. python 混合整数规划_matlab求解混合整数规划的困惑
  3. IDEA 出现 updating indices 卡进度条问题的解决方案并加快索引速度
  4. boost::fibers::algo::shared_work >用法的测试程序
  5. 80%的Linux都不懂的内存问题
  6. vba将数值转化文本格式_Excel文本格式和数字格式的相互转换
  7. IE6不支持PNG图片透明效果的完美解决方案(完善版)
  8. c语言socket段错误,(Qtcpsocket)退出程序时提示段错误的解决
  9. 20一个自定义集合的自述
  10. 1.PHP7内核剖析 --- PHP 基础架构
  11. php单引号和双引号的速度,在php中单引号和双引号是否有性能优势?[复制]
  12. Java字符串的字符进行排序
  13. 超市管理系统java_java实现超市管理系统
  14. oppo9s刷机教程_OPPOR9S海外版官方固件刷机教程_线刷|救砖教程图解
  15. visio流程图的叉号_常用的流程图软件有哪些?这3款软件不可错过!
  16. uniapp接入支付宝登录及订阅消息教程
  17. 如何解决U盘装系统后磁盘总容量变小
  18. 高红梅 第一章 海明威自我身份意识的形成 第一节 文化氛围与自我身份意识的生成
  19. python 特征选择卡方_文本特征选择(信息熵、Gini、IV、卡方值)
  20. jQuery大法第五式--动画效果

热门文章

  1. C++类静态成员与类静态成员函数
  2. 学习笔记(18):Python网络编程并发编程-守护进程
  3. 包含min函数的栈 python_面试题_设计包含 min函数的栈
  4. go build 参数_Go语言 通过go bulid -tags 实现编译控制
  5. 训练集山准确率高测试集上准确率很低_推荐算法改版前的AB测试
  6. javascript 计算两个坐标的距离 米_土方全面应用计算
  7. 第2章 Python 数字图像处理(DIP) --数字图像基础5 -- 算术运算、集合、几何变换、傅里叶变换等
  8. 熟悉linux系统内核,[科普] Linux 的内核与 Linux 系统之间的关系
  9. UOJ.117.欧拉回路
  10. navicat的安装