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

C# 将文件夹递归输出为树的最快最简单的方法,c#,recursion,directory,C#,Recursion,Directory,有没有更好(更快)的方法来做同样的事情?如果有很多文件夹。 我对算法略知一二,希望有人能给我一个更好的算法 我使用以下代码进行工作: private static void ShowAllFoldersUnder(string path, int indent) { try { if ((File.GetAttributes(path) & FileAttributes.Rep

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

我使用以下代码进行工作:

        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

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

多次使用此代码。它是完美的。