I want to list every file and directory contained in a directory and subdirectories of that directory. If I chose C:\\ as the directory, the program would get every name of
using System.IO; using System.Text; string[] filePaths = Directory.GetFiles(@"path", "*.*", SearchOption.AllDirectories);