Follow via:
RSS
Email Alert
Question
0 Votes
+ -

Windows utilities reliably search contents of unopened text files?

Are there free utilities that will search contents of text files while the files are not opened. Text files include html files, php files, C or the like. I have found that searching these files reliably I need to have them opened in an editor and search has to be done from the editor.

The built-in search facilities in Windows XP or Vista do not appear reliable to me. It can't find files that I know do have the string of characters in them. I never know which part of string it can find.

By the way how can we start Windows Vista search in advanced mode or with contents search every time we want. I can't see the advanced option until the search fails. Perhaps I have missed something here.
31st Jul 2009

Answers (2)

0 Votes
+ -
How to find text file content quick and easy in thousands of files
This site might help your issue:

http://stahlforce.com/dev/index.php?tool=dvhelp03

The base version is free, but if you need a more powerful version then you will need a license. But give it a go. happy

Hope it is what you are looking for.
31st Jul 2009
0 Votes
+ -
Use findstr command
You can use findstr command and pipe it out to a text file.

For example at the root of where I want to search I use the following:

findstr /sin "searchstring" *.* >c:\findstr.txt

This searches the current directory and all directories for any file that contains the string "searchstring" and lists the results in a text file named findstr.txt in the root of C:\

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/findstr.mspx?mfr=true

Hope this helps.

Monice
31st Jul 2009
Answer the question
Formatting +
BB Codes - Note: HTML is not supported in forums
  • [b] Bold [/b]
  • [i] Italic [/i]
  • [u] Underline [/u]
  • [s] Strikethrough [/s]
  • [q] "Quote" [/q]
  • [ol][*] 1. Ordered List [/ol]
  • [ul][*] · Unordered List [/ul]
  • [pre] Preformat [/pre]
  • [quote] "Blockquote" [/quote]

Join the TechRepublic Community and join the conversation! Signing-up is free and quick, Do it now, we want to hear your opinion.