[Solved] How add letter for the folders start


As noted in the comments: you should actually move/rename the folder, not just print out its name.

DirectoryInfo dir = new DirectoryInfo("C:/Users/Wiz/Desktop/folder/");
foreach (var item in dir.GetDirectories())
{
    item.MoveTo(Path.Combine(item.Parent.FullName, "a" + item.Name));
    Console.WriteLine("a" + item.Name);
 }
 Console.ReadLine();

1

solved How add letter for the folders start