C# Serv-u连接MySQL操作文件Demo

1 Serv-U连接MySQL操作FTP文件

1-1 配置用户

        /* Ftp服务器操作:
         * 已完成功能:上传、下载、重命名、删除、新建目录、判断目录是都存在、获取文件大小
         * 若出现bug:远程服务器返回错误: (501) 参数或变量中有语法错误。解决方案:将目录中的"/"修改为"//"
         */
        /// <summary>
        /// FTP的服务器地址,格式ftp://127.0.0.1:21 进入用户的根目录
        /// </summary>
        private static string FtpConstr = "ftp://127.0.0.1:21";
        /// <summary>
        /// FTP服务器的用户名
        /// </summary>
        private static string FtpUserName = "Test1";
        /// <summary>
        /// Ftp服务器的密码
        /// </summary>
        private static string FtpPassword = "Test1";

1-2 上传文件

将本地分文件上传到FTP固定目录上

        /// <summary>
        /// 上传文件到远程ftp 、断点续传 :成功
        /// </summary>
        /// <param name="path">本地的文件目录</param>
        /// <param name="FileName">文件名称</param>
        /// <returns></returns>
        public static bool UploadFile(string Path, string FileName)
        {
            string ErroInfo = "";
            FileInfo f = new FileInfo(Path+FileName);
            Path = Path.Replace("\\", "/");
            //传到ftp目录下的这个目录下
            Path = FtpConstr + "/data/uploadFile/" + FileName;
            //根据Url创建FtpWebRequest对象
            FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(Path));
            reqFtp.UseBinary = true;
            //ftp用户名和密码
            reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
            //在一个命令之后被执行,默认为true(连接不会被关闭)
            reqFtp.KeepAlive = false;
            //指定执行什么命令
            reqFtp.Method = WebRequestMethods.Ftp.UploadFile;
            //上传文件时通知服务器的大小
            reqFtp.ContentLength = f.Length;
            //缓冲大小为2kb
            int buffLength = 2048;
            byte[] buff = new byte[buffLength];
            int contentLen;
            //打开一个文件流:读取上传文件
            FileStream fs = f.OpenRead();
            try
            {
                //把上传文件写入流
                Stream Strm = reqFtp.GetRequestStream();
                //每次读取文件流2kb
                contentLen = fs.Read(buff, 0, buffLength);
                //流内容没有结束
                while (contentLen != 0)
                {
                    //把内容从fileStream 写入Upload Stream
                    Strm.Write(buff, 0, buffLength);
                    contentLen = fs.Read(buff, 0, buffLength);
                }
                //关闭两个流
                Strm.Close();
                fs.Close();
                ErroInfo = "完成";
                return true;
            }
            catch (Exception ex)
            {
                ErroInfo = string.Format("因{0},无法完成上传", ex.Message);
                return false;
            }
        }

将本地分文件上传到FTP目录上

       /// <summary>
        /// 上传文件到远程ftp、断点续传 :成功
        /// </summary>
        /// <param name="ftpPath">ftp上的文件路径</param>
        /// <param name="Path">本地的文件目录</param>
        /// <param name="FileName">文件名</param>
        /// <returns></returns>
        public static bool UploadFile(string ftpPath, string Path, string FileName)
        {
            string ErrorInfo = "";
            FileInfo f = new FileInfo(Path+ FileName);
            Path = Path.Replace("\\", "/");
            //在Ftp上创建目录
            bool b = MakeDir(ftpPath);
            if (!b)
            {
                return false;
            }
            Path = FtpConstr + ftpPath + FileName;
            FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(Path));
            reqFtp.UseBinary = true;
            reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
            reqFtp.KeepAlive = false;
            reqFtp.Method = WebRequestMethods.Ftp.UploadFile;
            reqFtp.ContentLength = f.Length;
            int buffLength = 2048;
            byte[] buff = new byte[buffLength];
            int contentLen;
            FileStream fs = f.OpenRead();
            try
            {
                Stream strm = reqFtp.GetRequestStream();
                contentLen = fs.Read(buff, 0, buffLength);
                while (contentLen != 0)
                {
                    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;
            }
        }

1-3 下载文件

从FTP 服务器下载文件功能、断点续传 :成功

        /// <summary>
        /// 从FTP 服务器下载文件功能、断点续传 :成功
        /// </summary>
        /// <param name="FtpFilePath">FTP下载的地址</param>
        /// <param name="FilePath">存放在本地的地址</param>
        /// <param name="FileName">保存的文件名称</param>
        /// <returns></returns>
        public static bool Download(string FtpFilePath, string FilePath, string FileName)
        {
            try
            {
                FilePath = FilePath.Replace("我的电脑\\", "");
                string onlyFileName = Path.GetFileName(FileName);
                // string newFileName = FileName + onlyFileName;
                string newFileName = FilePath + FileName;
                if (File.Exists(newFileName))
                {
                    File.Delete(newFileName);
                }
                FtpFilePath = FtpFilePath.Replace("\\", "/");
                string URL = FtpConstr + FtpFilePath;
                FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(URL));
                reqFtp.UseBinary = true;
                reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
                //reqFtp.Method = WebRequestMethods.Ftp.DownloadFile;
                FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse();
                Stream StreamFtp = response.GetResponseStream();
                long cl = response.ContentLength;
                int bufferSize = 2048;
                int readCount;
                byte[] buffer = new byte[bufferSize];
                readCount = StreamFtp.Read(buffer, 0, bufferSize);
                FileStream outputStream = new FileStream(newFileName, FileMode.Create);
                while (readCount > 0)
                {
                    outputStream.Write(buffer, 0, readCount);
                    readCount = StreamFtp.Read(buffer, 0, bufferSize);
                }
                StreamFtp.Close();
                outputStream.Close();
                response.Close();
                return true;

            }
            catch (Exception ex)
            {
                //ErrorInfo=string.Format("因{0},无法下载",ex.Message);
                return false;
            }
        }

1-4 FTP新建文件夹

在FTP上新建文件夹

        /// <summary>
        /// 新建文件夹:成功
        /// </summary>
        /// <param name="ftpPath">ftp文件的路径</param>
        /// <returns></returns>
        public static bool MakeDir(string ftpPath)
        {
            string ErrorInfo = "";
            try
            {
                //判断Ftp上的文件目录是否存在
                bool IsExsis = RemoteFtpDirExists(ftpPath);
                if (IsExsis)
                {
                    return true;
                }
                string url = FtpConstr + ftpPath;
                FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url));
                reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
                reqFtp.UseBinary = true;
                reqFtp.Method = WebRequestMethods.Ftp.MakeDirectory;
                reqFtp.KeepAlive = false;
                reqFtp.GetResponse().Close();
                FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse();
                response.Close();
                return true;
            }
            catch (Exception ex)
            {
                ErrorInfo = string.Format("因{0},无法下载", ex.Message);
                return false;
            }
        }

1-5 查看FTP上是否存在某文件

查看Ftp上是否存在某文件

        /// <summary>
        /// 是否存在ftp文件:成功
        /// </summary>
        /// <param name="Path">ftp路径</param>
        /// <returns></returns>
        public static bool RemoteFtpDirExists(string FtpPath)
        {
            bool IsExsis = false;
            FtpPath = FtpConstr + FtpPath;
            FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(FtpPath));
            reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
            reqFtp.Method = WebRequestMethods.Ftp.ListDirectory;
            reqFtp.KeepAlive = false;
            FtpWebResponse resFtp = null;
            try
            {
                resFtp = (FtpWebResponse)reqFtp.GetResponse();
                StreamReader stream = new StreamReader(resFtp.GetResponseStream());
                //string line = stream.ReadLine();
                //while (line != null)
                //{
                //    if (line == FileName)
                //    {
                //        IsExsis = true;
                //        break;
                //    }
                //    line = stream.ReadLine();
                //}
                IsExsis = true;
                stream.Close();
                resFtp.Close();
                return IsExsis;
            }
            catch (Exception)
            {
                if (resFtp != null)
                {
                    resFtp.Close();
                }
                return IsExsis;
            }
        }

1-6 删除FTP文件

删除FTP文件

        /// <summary>
        /// 删除:成功
        /// </summary>
        /// <param name="fileName"></param>
        /// <returns></returns>
        public static bool Delete(string fileName)
        {
            try
            {
                string url = FtpConstr + fileName;
                //根据Url创建FtpWebRequest
                FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url));
                reqFtp.UseBinary = true;
                //在一个命令之后被执行,默认为true(连接不会被关闭)
                reqFtp.KeepAlive = false;
                //执行删除方法
                reqFtp.Method = WebRequestMethods.Ftp.DeleteFile;
                //Ftp用户名与密码
                reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
                FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse();
                //string sStatus=listResponse.StatusDescription();
                response.Close();
                return true;
            }
            catch (Exception ex)
            {
                //ErrorInfo=string.Format("因{0},无法下载",ex.Message);
                return false;
            }
        }

1-7 获取FTP文件大小

        /// <summary>
        /// 获得文件大小:成功
        /// </summary>
        /// <param name="url">FTP文件的完全路径</param>
        /// <returns></returns>
        public static long GetFileSize(string url)
        {
            long fileSize = 0;
            try
            {
                url = FtpConstr + url;
                FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url));
                reqFtp.UseBinary = true;
                reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
                reqFtp.Method = WebRequestMethods.Ftp.GetFileSize;
                FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse();
                fileSize = response.ContentLength;

                response.Close();
            }
            catch (Exception ex)
            {
                //MessageBox.Show(ex.Message);
            }
            return fileSize;
        }

1-8 文件重命名

        /// <summary>
        /// 重命名 :成功
        /// </summary>
        /// <param name="ftpPath">ftp文件路径</param>
        /// <param name="currentFilename"></param>
        /// <param name="newFilename">新文件名</param>
        public static bool FileRename(string ftpPath, string currentFileName, string newFileName)
        {
            bool success = false;
            try
            {
                string uri = FtpConstr + ftpPath + currentFileName;
                FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri));
                reqFtp.Credentials = new NetworkCredential(FtpUserName, FtpPassword);
                reqFtp.UseBinary = true;
                //重命名命令
                reqFtp.Method = WebRequestMethods.Ftp.Rename;
                //重命名名字
                reqFtp.RenameTo = newFileName;

                FtpWebResponse ftpWebResponse = (FtpWebResponse)reqFtp.GetResponse();
                Stream ftpResponseStream = ftpWebResponse.GetResponseStream();
                ftpResponseStream.Close();
                ftpWebResponse.Close();
            }
            catch (Exception)
            {
                success = false;
            }
            return success;
        }

2、总结

性能:
是否安全:
数据一致性:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,377评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,390评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,967评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,344评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,441评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,492评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,497评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,274评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,732评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,008评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,184评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,837评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,520评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,156评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,407评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,056评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,074评论 2 352

推荐阅读更多精彩内容

  • FTP服务概述 简单FTP构建及访问 VSFTP服务基础 用户禁锢、黑白名单 FTP并发及带宽限制 一、FTP服务...
    紫_轩阅读 7,596评论 3 25
  • 1、第八章 Samba服务器2、第八章 NFS服务器3、第十章 Linux下DNS服务器配站点,域名解析概念命令:...
    哈熝少主阅读 3,727评论 0 10
  • 图片更清晰,文字在最下面 FTP是TCP/IP的一种应用,使用TCP而不是UDP,所以是可靠的,面向连接的。 FT...
    停下浮躁的心阅读 1,699评论 0 4
  • vsftpd配置文件详解 1.默认配置: a.允许匿名用户和本地用户登陆。 anonymous_enable=YE...
    指间_流年阅读 9,221评论 0 2
  • 今天和孩子讨论了一下写作文的事,很有趣。 孩子今天要写一篇爱国英雄的故事,但是找不到合适的人物。想让我给一点意见。...
    诚实的果果阅读 81评论 0 1