码迷,mamicode.com
首页 > Windows程序 > 详细

c# 获取文件夹下面所有文件夹列表

时间:2014-10-29 19:07:20      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   for   sp   文件   div   

方法一:

 string dirPath = @"D:\App1";

            List<string> dirs = new List<string>(Directory.GetDirectories(dirPath, "*", System.IO.SearchOption.AllDirectories));
            foreach (var dir in dirs)
            {
                Console.WriteLine("{0}", dir);
            }
            Console.WriteLine("{0} directories found.", dirs.Count);

方法二:

string dirPath = @"D:\App1";

List<string> dirs = ListDirectory(dirPath);

private static List<string> ListDirectory(string dirPath)
        {
            List<string> dirs = new List<string>(Directory.EnumerateDirectories(dirPath));
            List<string> result = new List<string>();
            foreach (var dir in dirs)
            {

                result.Add(string.Format("{0}", dirPath + "\\" + dir.Substring(dir.LastIndexOf("\\") + 1)));
                Console.WriteLine("{0}", dirPath + "\\" + dir.Substring(dir.LastIndexOf("\\") + 1));

                result.AddRange(ListDirectory(dir));
            }
            return result;
        }

 

c# 获取文件夹下面所有文件夹列表

标签:style   blog   io   color   ar   for   sp   文件   div   

原文地址:http://www.cnblogs.com/akiing/p/4060020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!