To find text in a directory of files, use the following Windows command (it’s faster than Windows Search):
- This will search all files in the current directory for the text you are looking for: findstr /c:”I want to find this text” *.*
- If you want to also search sub-directories use the /s option: findstr /s /c:”I want to find this text” *.*
Leave a Reply