vote up 5 vote down star
1

The built-in Windows Search tool will apparently not search within PHP files. I cannot find the files named *.php containing text "some_function_name" that I know are there.

"Search is complete. There are no results to display."

What's a good alternative to the built-in "Search for Files and Folders" tool in Windows?

Search for Files and Folders

flag

65% accept rate

18 Answers

vote up 9 vote down check

To get Windows Search to search all file types use Chris Sells' .reg file ("Filter Files With Unknown Extensions For XP")

link|flag
vote up 11 vote down

findstr /s [string] [files]

findstr /? for more information, including the regex syntax you can use.

link|flag
An example of usage would be: c:\> findstr /s /I /C:some_function_name" *.php /s is recursive search, /I is case-insensitive, /C is the string to look for. – Joe Pineda Sep 30 '08 at 20:58
Forgot to mention I find DOS' findstr to be much faster than Windows Search, and cares nothing about the extension type. – Joe Pineda Sep 30 '08 at 20:59
vote up 5 vote down

Google Desktop. There's an addin that is great for text based files.

link|flag
vote up 3 vote down

Windows Grep - an excellent tool on Windows.

link|flag
vote up 3 vote down

Ack is a pretty nice command line tool implemented in Perl.

link|flag
vote up 3 vote down

Copernic Desktop Search is good. Same functionality as Google desktop search, but some people don't like the way GDS phones home. Unfortunately there was an app it didn't play nice with on my work machine, so I had to uninstall it.

link|flag
vote up 3 vote down

Install Cygwin. Use grep. You also get the benefit of all the other cool linux tools like vim and sed that will also make your life easier / increase your productivity.

link|flag
vote up 3 vote down

I use the free version of Agent Ransack. It lets me use regular expressions and shows me the lines of the file that match.

link|flag
vote up 2 vote down

Have you tried using grin ? It's a command-line program written in Python. It runs under Windows, Cygwin, Linux...

link|flag
vote up 1 vote down

Try this: http://www.topshareware.com/Spectate-Swamp-Search-download-42932.htm

That will fix you right up...

link|flag
vote up 1 vote down

I don't have any trouble searching in php files on my Windows XP machine. Must be some strange setting excluding php files maybe. There is a shareware program called WindowsGrep that works pretty well.

link|flag
vote up 1 vote down

You can just modify XP to search ALL textual files for text. See here: http://www.petri.co.il/windows_xp_search_bug.htm

link|flag
vote up 1 vote down

You can tell Windows Desktop Search to look in PHP files. It also doesn't look in CS files by default.

Go to Control Panels > Indexing Options > Advanced > File Types tab. On the bottom of the form, enter "php" and click "Add New Extension". Set the type to "Index Properties and File Contents".

link|flag
vote up 1 vote down

I haven't seen anyone recommend Copernicus yet.

link|flag
Copernic, not Copernicus – Roddy Sep 30 '08 at 22:04
vote up 0 vote down

Of course it works with php ! Just add it in registry !

link|flag
vote up -1 vote down

If you have Notepad++ or Dreamweaver, they'll do that for you.

link|flag
vote up -1 vote down
dir /s *.php

Execute that in the directory you want to find stuff in and in subfolders.

link|flag
I don't have 100 to downvote you , but this doesn't answer the poster's question. – sep332 Nov 6 '08 at 17:47
vote up -1 vote down

To search for files based on its contents I use Notepad++. Most of the time I already have it open anyway.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.