C#中ftp检测目录是否存在和创建文件夹的实现

C#中ftp检测目录是否存在和创建文件夹的实现

C# ftp判断目录是否存在,不存在则自动创建文件夹

/// <summary> /// 判断文件的目录是否存,不存则创建 /// </summary> /// <param name="destFilePath">本地文件目录</param> public void CheckDirectoryAndMakeMyWilson3(string destFilePath) { string fullDir = destFilePath.IndexOf(':') > 0 ? destFilePath.Substring(destFilePath.IndexOf(':') + 1) : destFilePath; fullDir = fullDir.Replace('\\', '/'); string[] dirs = fullDir.Split('/');//解析出路径上所有的文件名 string curDir = "/"; for (int i = 0; i < dirs.Length; i++)//循环查询每一个文件夹 { if (dirs[i] == "") continue; string dir = dirs[i]; //如果是以/开始的路径,第一个为空 if (dir != null && dir.Length > 0) { try { CheckDirectoryAndMakeMyWilson2(curDir, dir); curDir += dir + "/"; } catch (Exception) { } } } } public void CheckDirectoryAndMakeMyWilson2(string rootDir, string remoteDirName) { if (!DirectoryExist(rootDir, remoteDirName))//判断当前目录下子目录是否存在 MakeDir(rootDir + "\\" + remoteDirName); } public bool DirectoryExist(string rootDir, string RemoteDirectoryName) { string[] dirList = GetDirectoryList(rootDir);//获取子目录 if (dirList.Length > 0) { foreach (string str in dirList) { if (str.Trim() == RemoteDirectoryName.Trim()) { return true; } } } return false; } public string[] GetDirectoryList(string dirName) { string[] drectory = GetFilesDetailList(dirName); List<string> strList = new List<string>(); if (drectory.Length > 0) { foreach (string str in drectory) { if (str.Trim().Length == 0) continue; //会有两种格式的详细信息返回 //一种包含<DIR> //一种第一个字符串是drwxerwxx这样的权限操作符号 //现在写代码包容两种格式的字符串 if (str.Trim().Contains("<DIR>")) { strList.Add(str.Substring(39).Trim()); } else { if (str.Trim().Substring(0, 1).ToUpper() == "D") { strList.Add(str.Substring(55).Trim()); } } } } return strList.ToArray(); }

定义ftp地址:private string ftpServerIP = "IP:端口";

/// <summary> /// 获得文件明晰 /// </summary> /// <param name="path"></param> /// <returns></returns> public string[] GetFilesDetailList(string path) { return GetFileList("ftp://" + ftpServerIP + "/" + path, WebRequestMethods.Ftp.ListDirectoryDetails); } //都调用这个 //上面的代码示例了如何从ftp服务器上获得文件列表 private string[] GetFileList(string path, string WRMethods) { StringBuilder result = new StringBuilder(); try { Connect(path);//建立FTP连接 reqFTP.Method = WRMethods; reqFTP.KeepAlive = false; WebResponse response = reqFTP.GetResponse(); StreamReader reader = new StreamReader(response.GetResponseStream(), System.Text.Encoding.Default);//中文文件名 string line = reader.ReadLine(); while (line != null) { result.Append(line); result.Append("\n"); line = reader.ReadLine(); } // to remove the trailing '' '' if (result.ToString() != "") { result.Remove(result.ToString().LastIndexOf("\n"), 1); } reader.Close(); response.Close(); return result.ToString().Split('\n'); } catch (Exception ex) { throw new Exception("获取文件列表失败。原因: " + ex.Message); } } //连接ftp private void Connect(String path) { // 根据uri创建FtpWebRequest对象 reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); // 指定数据传输类型 reqFTP.Method = System.Net.WebRequestMethods.Ftp.UploadFile; reqFTP.UseBinary = true; reqFTP.UsePassive = false;//表示连接类型为主动模式 // ftp用户名和密码 reqFTP.Credentials = new NetworkCredential(FTPUSERID, FTPPASSWORD); } /// <summary> /// 创建目录 /// </summary> /// <param name="dirName"></param> public void MakeDir(string dirName) { try { string uri = "ftp://" + ftpServerIP + "/" + dirName; Connect(uri);//连接 reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory; reqFTP.KeepAlive = false; FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse(); response.Close(); } catch (Exception ex) { throw new Exception("创建文件失败,原因: " + ex.Message); } }

到此这篇关于C#中ftp检测目录是否存在和创建文件夹的实现的文章就介绍到这了,更多相关C# ftp检测目录存在内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读

    ftp怎么设置|ftp怎么设置用户权限

    ftp怎么设置|ftp怎么设置用户权限,,ftp怎么设置用户权限 FTP登录的话,如果没有用户名和密码的话,你可以使用匿名的方式去进行登录。如果匿名

    foreach的用法c语言和c#

    foreach的用法c语言和c#,数组,遍历,本文目录foreach的用法c语言和c#详细讲解foreach循环的用法C#中的foreach 怎么用啊foreach用法C#中的f

    什么是FTP及什么是FTP服务器

    什么是FTP及什么是FTP服务器,文件,服务器,本文目录什么是FTP及什么是FTP服务器FTP服务器的作用什么是FTP服务器ftp服务器是什么什么是FTP

    ftp服务器设置|ftp服务器设置编码

    ftp服务器设置|ftp服务器设置编码,,ftp服务器设置编码1,我们可以使用wdcp后台管理界面,快速创建一个网站出来并且绑定网站的域名。首先,通过

    params 是什么意思,c#里

    params 是什么意思,c#里,参数,数组,本文目录params 是什么意思,c#里params.add跟params.put有区别吗C#中ref,out和params有什么区别发送请

    C# 基于StackExchange.Redis.dll利用Redis实现分布式Session

    C# 基于StackExchange.Redis.dll利用Redis实现分布式Session,令牌,客户端,最近在研发一款O2O产品,考虑到分布式架构的需要,以前那一套.NET的

    c#中 (ToolStrip

    c#中 (ToolStrip,窗体,控件,本文目录c#中 (ToolStrip)控件是做什么用的winform窗体问题 toolstrip怎么重用,每个窗体都要用到同样的工具栏窗体