【发布时间】:2015-11-19 22:23:27
【问题描述】:
有没有更好的方法(更快)来做同样的事情?如果有很多文件夹。
我对算法有点了解,希望有人可以给我一个更好的算法。
我使用以下代码完成工作:
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
【问题讨论】:
-
多次使用此代码。这是完美的。