In C# how can I search through a Folder and its Subfolders to find files that match a string value. My string value could be \"ABC123\" and a matching file might be ABC123_
Adding to SLaks answer, in order to use the Directory.GetFiles method, be sure to use the System.IO namespace.
Directory.GetFiles
System.IO