博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 递归查找文件夹下所有文件和子文件夹的所有文件
阅读量:6735 次
发布时间:2019-06-25

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

    1. 方法实现
    2. public class DirectoryAllFiles  
    3.    {  
    4.        static List<FileInformation> FileList = new List<FileInformation>();  
    5.        public static List<FileInformation> GetAllFiles(DirectoryInfo dir)  
    6.        {  
    7.            FileInfo[] allFile = dir.GetFiles();  
    8.            foreach (FileInfo fi in allFile)  
    9.            {  
    10.                FileList.Add(new FileInformation{ FileName=fi.Name,FilePath=fi.FullName });  
    11.            }  
    12.            DirectoryInfo[] allDir= dir.GetDirectories();  
    13.            foreach (DirectoryInfo d in allDir)  
    14.            {  
    15.                GetAllFiles(d);  
    16.            }  
    17.            return FileList;  
    18.        }  
    19.    }  
    20.   
    21.    public class FileInformation  
    22.    {  
    23.        public string FileName { get; set; }  
    24.        public string FilePath { get; set; }  
    25.    }  
    26. 方法调用: List<FileInformation> list = DirectoryAllFiles.GetAllFiles(

new System.IO.DirectoryInfo(@"E:\Test"));  if (list.Where(t => t.FileName.ToLower().Contains("json")).Any()) Console.WriteLine("有信息");  foreach (var item in list)  

  1. {     
    1.             Console.WriteLine(

string.Format("文件名:{0}---文件目录{1}",item.FileName,item.FilePath));  

  1. }  

转载于:https://www.cnblogs.com/dogxuefeng/p/7728589.html

你可能感兴趣的文章
array
查看>>
POJ 2376 Cleaning Shifts 贪心
查看>>
Python3学习笔记-发送邮件
查看>>
实例介绍PDU申请流程
查看>>
在JScript中使用正则表达式
查看>>
HTML多选操作的实现
查看>>
尚硅谷java——网络编程
查看>>
典型用户和场景
查看>>
并查集——poj1308(并查集延伸)
查看>>
POI/JFreeChart
查看>>
1101 Quick Sort
查看>>
vue过滤器
查看>>
开山之震
查看>>
axios详解
查看>>
npm发包注意
查看>>
ubuntu16.04 安装OpenNI并运行kinnectfusion
查看>>
python常用命令(持续) | Commonly used Python command list (con't)
查看>>
IOS6.0 学习第2篇,弹出AlertView
查看>>
博客已搬家,新博地址 http://www.yiven.vip
查看>>
Openstack的nova-network的vlan模式扩展
查看>>