将文件夹递归输出为树的最快速最简单的方法

时间:2015-08-26 02:40:14

标签: c# recursion directory

有更好的方法(更快)做同样的事情吗?如果有很多文件夹 我对算法知之甚少,希望有人能给我一个更好的算法。

我使用以下代码完成工作:

        private static void ShowAllFoldersUnder(string path, int indent)
        {
            try
            {
                if ((File.GetAttributes(path) & FileAttributes.ReparsePoint)
                    != FileAttributes.ReparsePoint)
                {
                    foreach (string folder in Directory.GetDirectories(path))
                    {
                        Console.WriteLine(
                            "{0}{1}", new string(' ', indent), Path.GetFileName(folder));
                        ShowAllFoldersUnder(folder, indent + 2);
                    }
                }
            }
            catch (UnauthorizedAccessException ex) {
                Console.WriteLine(ex.Message); 
            }    
        }

输出样本结果

CompositeUI
  BuilderStrategies
  Collections
  Commands
  Configuration
    Xsd
  EventBroker
  Instrumentation
  obj
    Debug
      TempPE
  Properties
  Services
  SmartParts
  UIElements
  Utility
  Visualizer

1 个答案:

答案 0 :(得分:0)

EnumerateDirectories可能更快,因为它不必像GetDirectories那样分配文件夹名称数组。