Powershell can be used to search for content (with regex support) for files in a path by using Select-String
:
Select-String -Path "E:\Text_Files\*" -Pattern "^My string to search for$"
The output of the command looks like this for any results:
testfile.txt:1:My string to search for