方法一:

 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;
        }

 

相关文章:

  • 2021-10-21
  • 2021-08-24
  • 2021-05-17
  • 2021-08-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2021-06-01
  • 2022-02-21
相关资源
相似解决方案