C# FTP操作类库

640?wx_fmt=jpeg

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


    }


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/272416.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安装并配置ROS环境

参考该网址内容&#xff1a;http://wiki.ros.org/cn/ROS/Tutorials/InstallingandConfiguringROSEnvironment

Cropper – 简单的 jQuery 图片裁剪插件

Cropper 是一个简单的 jQuery 图像裁剪插件。它支持选项&#xff0c;方法&#xff0c;事件&#xff0c;触摸&#xff08;移动&#xff09;&#xff0c;缩放&#xff0c;旋转。输出的裁剪数据基于原始图像大小&#xff0c;这样你就可以用它们来直接裁剪图像。 如果你尝试裁剪跨域…

C# JSON格式数据用法

JSON简介JSON(全称为JavaScript ObjectNotation) 是一种轻量级的数据交换格式。它是基于JavaScript语法标准的一个子集。JSON采用完全独立于语言的文本格式&#xff0c;可以很容易在各种网络、平台和程序之间传输。JSON的语法很简单&#xff0c;易于人阅读和编写&#xff0c;同…

Ros命令及功能

运行小乌龟代码&#xff1a; roscore rosrun turtlesim turtlesim_node rosrun turtlesim turtle_teleop_key一些命令及作用 ros 加tap //查看电脑中以ros开头的命令 rqt_graph //将系统内的主要资源以可视化的形式展现出来 rosnode list //列出系统节点 命令 --help //查看命…

数据库——环境初建改端口和密码(转)

一、修改APACHE的监听端口 2、在界面中选apache&#xff0c;弹出隐藏菜单选项&#xff0c;打开配置文件httpd.conf; 2、找到Listen 80 和 ServerName localhost:80; 3、将80改成801&#xff08;当然自己也可以设定别的不使用的端口&#xff0c;例如8000等&#xff09;; 4、保存…

文件系统认知

什么是文件系统 常规认知是&#xff1a;linux根目录那些东西 百科&#xff1a;文件系统是操作系统用于明确存储设备组织文件的方法&#xff0c;操作系统中负责管理和存储文件信息的软件机构称为文件管理系统&#xff0c;简称文件系统。 以上说的方法&#xff1a;就是文件管理…

寒哥细谈之AutoLayout全解

看到群中好多朋友还停留在Frame布局的痛苦时代&#xff0c;以及有些开发者接手别人的就项目发现布局一团乱。而且没有启动图的时候并不是真正真正适配iPhone 6(S)、iPhone6(S) Plus等设备 。寒哥准备尽可能详细的讲一讲我所掌握的AutoLayout 。AutoLayout很难&#xff1f;我觉得…

最难学的5种编程语言排行

每个程序员都熟悉许多编程语言。许多编程语言都是高级的&#xff0c;它们的语法是人类可读的。然而&#xff0c;也有一些低级语言&#xff0c;对于一个人来说&#xff0c;读起来很困难&#xff0c;但是可以理解。然而&#xff0c;您是否遇到过一种既不可读又不可理解的编程语言…

[小北De编程手记] : Lesson 02 - Selenium For C# 之 核心对象

从这一篇开始&#xff0c;开始正式的介绍Selenium 以及相关的组件&#xff0c;本文的将讨论如下问题&#xff1a; Selenium基本的概念以及在企业化测试框架中的位置Selenium核心对象&#xff08;浏览器驱动&#xff09; Web DriverSelenium核心对象&#xff08;Dom元素&#xf…

Java中HashMap的entrySet()你会用了吗

Map中存放的元素均为键值对&#xff0c;故每一个键值对必然存在一个映射关系。 Map中采用Entry内部类来表示一个映射项&#xff0c;映射项包含Key和Value Map.Entry里面包含getKey()和getValue()方法 Set<Entry<T,V>> entrySet() 该方法返回值就是这个map中各个键…

JS获取请求URL相关参数

今天在找获取当前网址除去参数的js方式&#xff0c;结果自己会的竟然只有window.location.href 先看一个示例 用javascript获取url网址信息 <script type"text/javascript"> document.write("location.host"location.host"<br>"); d…

wiki语法大全

Wiki语法大全 编辑一个维客页面十分容易。只要点击页面上方的“编辑本页”或右侧的[编辑]链接即可修改该页&#xff0c;或点击“讨论本页”然后再点击“编辑页面”来讨论该页面。点击后您就会看到一个包含那个Wiki页面的可编辑的文字区域。 先将文字复制到您最喜欢的文字编辑器…

驱动认知

用户态 App&#xff1a;cp指令&#xff0c;ftp的项目等等这就是App的开发。 App开发需要C的基础和C库&#xff0c;C库讲到文件&#xff0c;进程&#xff0c;进程间通信&#xff0c;线程&#xff0c;网络&#xff0c;界面&#xff08;GTk&#xff09;。 C库&#xff08;是linux标…

TreeMap实现排序

TreeMap TreeMap实现SortMap接口&#xff0c;能够把它保存的记录根据键排序&#xff0c;默认是按键值的升序排序&#xff0c;也可以指定排序的比较器。当用Iterator遍历TreeMap时&#xff0c;得到的记录是排过序的。 TreeMap取出来的是排序后的键值对。但如果您要按自然顺序或…

CSS 布局实例系列(四)如何实现容器中每一行的子容器数量随着浏览器宽度的变化而变化?...

Hello&#xff0c;小朋友们&#xff0c;还记得我是谁吗&#xff1f;对了&#xff0c;我就是~超威~好啦&#xff0c;言归正传&#xff0c;今天的布局实例是&#xff1a; 实现一个浮动布局&#xff0c;红色容器中每一行的蓝色容器数量随着浏览器宽度的变化而变化&#xff0c;就如…

基于框架编写驱动代码

操作驱动的上层代码&#xff08;pin4test&#xff09; #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h>void main() {int fd,data;fd open("/dev/pin4",O_RDWR);if(fd<0){printf("open fail…

nacos在windows下安装

1:访问https://github.com/alibaba/nacos/releases下载nacos 2:下载到本地解压 3:点击startup.cmd 启动nacos 4:访问 http://127.0.0.1:8848/nacos 输入账号和密码&#xff0c;nacos/nacos

微机总线地址,物理地址 ,虚拟地址

总线地址 地址总线 (Address Bus&#xff1b;又称&#xff1a;位址总线) 属于一种电脑总线 &#xff08;一部份&#xff09;&#xff0c;是由CPU 或有DMA 能力的单元&#xff0c;用来沟通这些单元想要存取&#xff08;读取/写入&#xff09;电脑内存元件/地方的实体位址。 自己…

Navicat远程连接linux下mysql服务器1045错误解决办法在这儿

1&#xff1a;首先通过xshell工具或者你熟悉的工具连接远程linux下的服务器 mysql -uroot -p 然后输入密码 2.进行授权 如果想root用户使用password从任何主机连接到mysql服务器的话。 GRANT ALL PRIVILEGES ON *.* TO root% IDENTIFIED BY 你的mysql密码 WITH GRANT O…

树莓派 博通BCM2835芯片手册

手册提取链接 链接&#xff1a;https://pan.baidu.com/s/1fdmIBNn1Pr1j3-ercNhKJg 提取码&#xff1a;8y1b 驱动的两大利器&#xff1a; 1、电路图:通过电路图找到寄存器 2、芯片手册 树莓派有54个通用IO口(0到53)&#xff0c;所有GPIO口至少有两个可选功能&#xff08;输入输…