博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DirFile
阅读量:6236 次
发布时间:2019-06-22

本文共 15145 字,大约阅读时间需要 50 分钟。

using System;using System.Text;using System.IO;namespace MyListen{    ///     /// 文件操作夹    ///     public static class DirFile    {        #region 检测指定目录是否存在        ///         /// 检测指定目录是否存在        ///         /// 目录的绝对路径        /// 
public static bool IsExistDirectory(string directoryPath) { return Directory.Exists(directoryPath); } #endregion #region 检测指定文件是否存在,如果存在返回true /// /// 检测指定文件是否存在,如果存在则返回true。 /// /// 文件的绝对路径 public static bool IsExistFile(string filePath) { return File.Exists(filePath); } #endregion #region 获取指定目录中的文件列表 /// /// 获取指定目录中所有文件列表 /// /// 指定目录的绝对路径 public static string[] GetFileNames(string directoryPath) { //如果目录不存在,则抛出异常 if (!IsExistDirectory(directoryPath)) { throw new FileNotFoundException(); } //获取文件列表 return Directory.GetFiles(directoryPath); } #endregion #region 获取指定目录中所有子目录列表,若要搜索嵌套的子目录列表,请使用重载方法. /// /// 获取指定目录中所有子目录列表,若要搜索嵌套的子目录列表,请使用重载方法. /// /// 指定目录的绝对路径 public static string[] GetDirectories(string directoryPath) { try { return Directory.GetDirectories(directoryPath); } catch (IOException ex) { throw ex; } } #endregion #region 获取指定目录及子目录中所有文件列表 /// /// 获取指定目录及子目录中所有文件列表 /// /// 指定目录的绝对路径 /// 模式字符串,"*"代表0或N个字符,"?"代表1个字符。 /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。 /// 是否搜索子目录 public static string[] GetFileNames(string directoryPath, string searchPattern, bool isSearchChild) { //如果目录不存在,则抛出异常 if (!IsExistDirectory(directoryPath)) { throw new FileNotFoundException(); } try { if (isSearchChild) { return Directory.GetFiles(directoryPath, searchPattern, SearchOption.AllDirectories); } else { return Directory.GetFiles(directoryPath, searchPattern, SearchOption.TopDirectoryOnly); } } catch (IOException ex) { throw ex; } } #endregion #region 检测指定目录是否为空 /// /// 检测指定目录是否为空 /// /// 指定目录的绝对路径 public static bool IsEmptyDirectory(string directoryPath) { try { //判断是否存在文件 string[] fileNames = GetFileNames(directoryPath); if (fileNames.Length > 0) { return false; } //判断是否存在文件夹 string[] directoryNames = GetDirectories(directoryPath); if (directoryNames.Length > 0) { return false; } return true; } catch { //这里记录日志 //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message); return true; } } #endregion #region 检测指定目录中是否存在指定的文件 /// /// 检测指定目录中是否存在指定的文件,若要搜索子目录请使用重载方法. /// /// 指定目录的绝对路径 /// 模式字符串,"*"代表0或N个字符,"?"代表1个字符。 /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。 public static bool Contains(string directoryPath, string searchPattern) { try { //获取指定的文件列表 string[] fileNames = GetFileNames(directoryPath, searchPattern, false); //判断指定文件是否存在 if (fileNames.Length == 0) { return false; } else { return true; } } catch (Exception ex) { throw new Exception(ex.Message); //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message); } } /// /// 检测指定目录中是否存在指定的文件 /// /// 指定目录的绝对路径 /// 模式字符串,"*"代表0或N个字符,"?"代表1个字符。 /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。 /// 是否搜索子目录 public static bool Contains(string directoryPath, string searchPattern, bool isSearchChild) { try { //获取指定的文件列表 string[] fileNames = GetFileNames(directoryPath, searchPattern, true); //判断指定文件是否存在 if (fileNames.Length == 0) { return false; } else { return true; } } catch (Exception ex) { throw new Exception(ex.Message); //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message); } } #endregion #region 根据时间得到目录名 / 格式:yyyyMMdd 或者 HHmmssff /// /// 根据时间得到目录名yyyyMMdd /// ///
public static string GetDateDir() { return DateTime.Now.ToString("yyyyMMdd"); } /// /// 根据时间得到文件名HHmmssff /// ///
public static string GetDateFile() { return DateTime.Now.ToString("HHmmssff"); } #endregion #region 复制文件夹 /// /// 复制文件夹(递归) /// /// 源文件夹路径 /// 目标文件夹路径 public static void CopyFolder(string varFromDirectory, string varToDirectory) { Directory.CreateDirectory(varToDirectory); if (!Directory.Exists(varFromDirectory)) return; string[] directories = Directory.GetDirectories(varFromDirectory); if (directories.Length > 0) { foreach (string d in directories) { CopyFolder(d, varToDirectory + d.Substring(d.LastIndexOf("\\"))); } } string[] files = Directory.GetFiles(varFromDirectory); if (files.Length > 0) { foreach (string s in files) { File.Copy(s, varToDirectory + s.Substring(s.LastIndexOf("\\")), true); } } } #endregion #region 检查文件,如果文件不存在则创建 /// /// 检查文件,如果文件不存在则创建 /// /// 路径,包括文件名 public static void ExistsFile(string FilePath) { //if(!File.Exists(FilePath)) //File.Create(FilePath); //以上写法会报错,详细解释请看下文......... if (!File.Exists(FilePath)) { FileStream fs = File.Create(FilePath); fs.Close(); } } #endregion #region 删除指定文件夹对应其他文件夹里的文件 /// /// 删除指定文件夹对应其他文件夹里的文件 /// /// 指定文件夹路径 /// 对应其他文件夹路径 public static void DeleteFolderFiles(string varFromDirectory, string varToDirectory) { Directory.CreateDirectory(varToDirectory); if (!Directory.Exists(varFromDirectory)) return; string[] directories = Directory.GetDirectories(varFromDirectory); if (directories.Length > 0) { foreach (string d in directories) { DeleteFolderFiles(d, varToDirectory + d.Substring(d.LastIndexOf("\\"))); } } string[] files = Directory.GetFiles(varFromDirectory); if (files.Length > 0) { foreach (string s in files) { File.Delete(varToDirectory + s.Substring(s.LastIndexOf("\\"))); } } } #endregion #region 从文件的绝对路径中获取文件名( 包含扩展名 ) /// /// 从文件的绝对路径中获取文件名( 包含扩展名 ) /// /// 文件的绝对路径 public static string GetFileName(string filePath) { //获取文件的名称 FileInfo fi = new FileInfo(filePath); return fi.Name; } #endregion #region 创建一个目录 /// /// 创建一个目录 /// /// 目录的绝对路径 public static void CreateDirectory(string directoryPath) { //如果目录不存在则创建该目录 if (!IsExistDirectory(directoryPath)) { Directory.CreateDirectory(directoryPath); } } #endregion #region 创建一个文件 /// /// 创建一个文件。 /// /// 文件的绝对路径 public static void CreateFile(string filePath) { try { //如果文件不存在则创建该文件 if (!IsExistFile(filePath)) { //创建一个FileInfo对象 FileInfo file = new FileInfo(filePath); //创建文件 FileStream fs = file.Create(); //关闭文件流 fs.Close(); } } catch (Exception ex) { //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message); throw ex; } } /// /// 创建一个文件,并将字节流写入文件。 /// /// 文件的绝对路径 /// 二进制流数据 public static void CreateFile(string filePath, byte[] buffer) { try { //如果文件不存在则创建该文件 if (!IsExistFile(filePath)) { //创建一个FileInfo对象 FileInfo file = new FileInfo(filePath); //创建文件 FileStream fs = file.Create(); //写入二进制流 fs.Write(buffer, 0, buffer.Length); //关闭文件流 fs.Close(); } } catch (Exception ex) { //LogHelper.WriteTraceLog(TraceLogLevel.Error, ex.Message); throw ex; } } #endregion #region 获取文本文件的行数 /// /// 获取文本文件的行数 /// /// 文件的绝对路径 public static int GetLineCount(string filePath) { //将文本文件的各行读到一个字符串数组中 string[] rows = File.ReadAllLines(filePath); //返回行数 return rows.Length; } #endregion #region 获取一个文件的长度 /// /// 获取一个文件的长度,单位为Byte /// /// 文件的绝对路径 public static int GetFileSize(string filePath) { //创建一个文件对象 FileInfo fi = new FileInfo(filePath); //获取文件的大小 return (int)fi.Length; } #endregion #region 获取指定目录中的子目录列表 /// /// 获取指定目录及子目录中所有子目录列表 /// /// 指定目录的绝对路径 /// 模式字符串,"*"代表0或N个字符,"?"代表1个字符。 /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。 /// 是否搜索子目录 public static string[] GetDirectories(string directoryPath, string searchPattern, bool isSearchChild) { try { if (isSearchChild) { return Directory.GetDirectories(directoryPath, searchPattern, SearchOption.AllDirectories); } else { return Directory.GetDirectories(directoryPath, searchPattern, SearchOption.TopDirectoryOnly); } } catch (IOException ex) { throw ex; } } #endregion #region 向文本文件写入内容 /// /// 向文本文件中写入内容 /// /// 文件的绝对路径 /// 写入的内容 /// 编码 public static void WriteText(string filePath, string text, Encoding encoding) { //向文件写入内容 File.WriteAllText(filePath, text, encoding); } #endregion #region 向文本文件的尾部追加内容 /// /// 向文本文件的尾部追加内容 /// /// 文件的绝对路径 /// 写入的内容 public static void AppendText(string filePath, string content) { File.AppendAllText(filePath, content); } #endregion #region 将现有文件的内容复制到新文件中 /// /// 将源文件的内容复制到目标文件中 /// /// 源文件的绝对路径 /// 目标文件的绝对路径 public static void Copy(string sourceFilePath, string destFilePath) { File.Copy(sourceFilePath, destFilePath, true); } #endregion #region 将文件移动到指定目录 /// /// 将文件移动到指定目录 /// /// 需要移动的源文件的绝对路径 /// 移动到的目录的绝对路径 public static void Move(string sourceFilePath, string descDirectoryPath) { //获取源文件的名称 string sourceFileName = GetFileName(sourceFilePath); if (IsExistDirectory(descDirectoryPath)) { //如果目标中存在同名文件,则删除 if (IsExistFile(descDirectoryPath + "\\" + sourceFileName)) { File.Delete(descDirectoryPath + "\\" + sourceFileName); } //将文件移动到指定目录 File.Move(sourceFilePath, descDirectoryPath + "\\" + sourceFileName); } } #endregion #region 从文件的绝对路径中获取文件名( 不包含扩展名 ) /// /// 从文件的绝对路径中获取文件名( 不包含扩展名 ) /// /// 文件的绝对路径 public static string GetFileNameNoExtension(string filePath) { //获取文件的名称 FileInfo fi = new FileInfo(filePath); return fi.Name.Split('.')[0]; } #endregion #region 从文件的绝对路径中获取扩展名 /// /// 从文件的绝对路径中获取扩展名 /// /// 文件的绝对路径 public static string GetExtension(string filePath) { //获取文件的名称 FileInfo fi = new FileInfo(filePath); return fi.Extension; } #endregion #region 清空指定目录 /// /// 清空指定目录下所有文件及子目录,但该目录依然保存. /// /// 指定目录的绝对路径 public static void ClearDirectory(string directoryPath) { if (IsExistDirectory(directoryPath)) { //删除目录中所有的文件 string[] fileNames = GetFileNames(directoryPath); for (int i = 0; i < fileNames.Length; i++) { File.Delete(fileNames[i]); } //删除目录中所有的子目录 string[] directoryNames = GetDirectories(directoryPath); for (int i = 0; i < directoryNames.Length; i++) { DeleteDirectory(directoryNames[i]); } } } #endregion #region 清空文件内容 /// /// 清空文件内容 /// /// 文件的绝对路径 public static void ClearFile(string filePath) { //删除文件 File.Delete(filePath); //重新创建该文件 CreateFile(filePath); } #endregion #region 删除指定目录 /// /// 删除指定目录及其所有子目录 /// /// 指定目录的绝对路径 public static void DeleteDirectory(string directoryPath) { if (IsExistDirectory(directoryPath)) { Directory.Delete(directoryPath, true); } } #endregion }}

 

转载地址:http://ngwia.baihongyu.com/

你可能感兴趣的文章
对 echo 框架进行统一的自定义错误处理
查看>>
自己开发图表库,脱离echart
查看>>
Java日期处理工具类(基于Calendar)
查看>>
夏日葵电商:阅读付费、知识付费系统诞生的“知识明星”
查看>>
调查了300多位技术主管:AWS和Azure经常配对使用
查看>>
约瑟夫环问题
查看>>
CNN之父再出豪言:深度学习需要新的编程语言
查看>>
Studio 3T:MongoDB SQL探究
查看>>
在敏捷中应用测试驱动开发
查看>>
在Kotlin中使用Gradle构建缓存
查看>>
PHP扩展库PEAR被攻击,近半年下载者或被影响
查看>>
Kubernetes上领先的开源Serverless解决方案有哪些
查看>>
Spark灰度发布在十万级节点上的实践
查看>>
干净架构在 Web 服务开发中的实践
查看>>
中国平安“豪赌”科技?从产险业务IT变形计聊起
查看>>
百度云BaaS体系揭秘,突破共识机制、单机计算和串行处理三大瓶颈
查看>>
将团队迁移到可视化项目管理软件
查看>>
微软Edge扩展工具箱旨在将Chrome扩展带至Edge
查看>>
北大AI公开课2019 | 驭势科技吴甘沙:AI时代的自动驾驶趋势
查看>>
移动互联网下半场,iOS开发者如何“高薪”成长?
查看>>