Advertisement
xxeell

All_Folders

Sep 29th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1.             List<string> dirs = new List<string>(Directory.GetDirectories("C:\\"));
  2.             string[] t;
  3.            
  4.             for(int i = 0; i < dirs.Count; i++)
  5.             {
  6.                 try
  7.                 {
  8.                     t = Directory.GetDirectories(dirs[i]);
  9.                     foreach(string q in t)
  10.                     {
  11.                         dirs.Add(q);
  12.                     }
  13.                 }
  14.                 catch
  15.                 {
  16.                     continue;
  17.                 }
  18.             }
  19.            
  20.             dirs.Sort();
  21.            
  22.             for(int i = 0; i < dirs.Count; i++)
  23.             {
  24.                 Console.WriteLine(dirs[i]);
  25.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement