Can anyone recommend a desktop search product that specifically targets the development community? I know that Google Desktop Search, Copernic Desktop Search and Windows Search can all search through source code (PHP, C#, VB, C++, SQL, etc) with some tweaking. However none seem to handle programming fundamentals very well (like .NET namespaces).

Update: Ideally I'm looking for a product that has some of the following features (if one even exists)

  • Search for code targeting a specific Java/.NET Framework version
  • Written in a specific language (Java, Ruby, etc)
  • Search for text where the method signature is like xxx
  • Search against a source repository (including history) like Subversion
link|improve this question

2  
I'm not sure if something like what you're asking for exists. Although I'd be interested to see if anyone here comes up with anything decent... – Sasha Chedygov Jun 22 '09 at 7:02
@musicfreak 1up on that :) – Nippysaurus Jun 22 '09 at 7:04
It's kind of amusing that the question assumes a Windows environment as a given. – f100 Jun 22 '09 at 11:19
feedback

11 Answers

up vote 7 down vote accepted

By installing Cygwin and findutils (within Cygwin), you can updatedb and then locate FILENAME_PATTERN. You can then grep to get what you are looking for.

link|improve this answer
2  
Be prepared to wait awhile for updatedb to finish. – Nifle Jun 22 '09 at 7:22
1  
In never takes me very long, although maybe you mean that the cygwin version is a lot slower – Roman A. Taycher Feb 11 '10 at 8:46
feedback

ack-grep is my current swiss-army knife. Doesn't do everything you're looking for, but it's all I (personally) find I need...

link|improve this answer
feedback

I have tried them all.

At the time I've tested them, only Copernic Desktop Search allowed me to search for partial matches. Windows Search and Google Desktop Search only returned exact matches.

Copernic is the tool I am still using on a daily basis today.

Note: I am using version 3.0.0(Build 81). AFAIK, this is the last free version that allows you to index your e-mails stored on an exchange server.

link|improve this answer
feedback

I use Total Commander to search inside text files but that covers only 2 points you needed:
Written in a specific language (Java, Ruby, etc)
Search for text where the method signature is like xxx

You can use RegEx for search, filter by file extension/name, search inside archive files etc.

try it out

EDIT

Total Commander on SVN:
Comparing and Synchronizing Subversion Folders With Total Commander
Using Total Commander with Subversion
TortoiseSVN with Total Commander

link|improve this answer
feedback

Coppernic desktop search works best for me.

link|improve this answer
feedback

On a Windows machine I'd go with the Cygwin/find/grep bundle. In other words, Cygwin makes Windows usable ;)

link|improve this answer
+1, grep certainly beats the hell out of Windows Search (up to and including XP; I don't know about Vista or 7). The only machine I will use that doesn't have Cygwin on it is my Ubuntu netbook. – Edmund Jan 23 '10 at 2:39
feedback

I'm using grepWin (http://tools.tortoisesvn.net/grepWin) after I tried almost every other search tool available. Do not confuse grepWin with Windows Grep. grepWin is free-of-charge.

It's the perfect search tool for my programming needs but I'd rather not use it for other searches, because when it comes to searching very quickly or searching other specialized file types than source code, more suitable tools are available.

link|improve this answer
feedback

Have you tried Google Desktop search?

link|improve this answer
feedback

I prefer the find/updatedb. Never had a problem with it.

Cheer.

link|improve this answer
feedback

The language aware search functions in Eclipse are amazing for Java projects (I can't really speak for its support for other languages). I never need to use external search tools.

link|improve this answer
feedback

This is actually a good idea for a new Windows search extender in Windows 7 :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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