This is the code:
private void SearchForDoc()
{
t = Environment.GetEnvironmentVariable("UserProfile")+"\\documents";
string[] s = Directory.GetFiles(t, "*.txt",);
This will search for txt files in a directory but i want to find also all the text files in its subdirectories. There should be SearchOption searchOption after the "*.txt",