I am new to c#. I have to delete sub folders starting with name "test.number" test.1 test.2 test.3 .... present in C:\ directory. These folders are not empty. What is the best way to achieve this?
I tried using directory.delete
try
{
Directory.Delete(@"C:\test", true);
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
Console.ReadLine();
}
but this deletes folder with name test leaves the rest