31

I've just installed Windows 7 64-bit and have found that it's file search really really sucks. What is a good alternative that I can load on my system to do file searching?

Note: I don't care about text searching in the file. I just want to search by filename.

EDIT: To sum up what is mostly in the comments:

  • Agent Ransack - Has a big bug in it, that's really limits its usefulness. Their fix doesn't work, and its been out there a few years.
  • Everything - Doesn't have very many options, and really sucks when trying to search in a specific path.
  • Fileseek - Now has a way to get around the recursive loop problem

19 Answers19

35

Everything is what I use. Very fast and handy.

14

Windows 7 search is actually not all that bad once you learn some key words.

Windows 7 search uses Advanced Query Syntax (more options described here)

It sounds like you want to do some very basic search functions. Here are some examples.

The following searches for files larger than 8 MB with a name containing the text "filename", having the extension .mp3 and having been modified on the 25th.

name:~~"filename" size:>8 MB ext:.mp3 datemodified:7/25/2011

The double tilde searches for any part in the search string containing your search term. It is like doing a search for "*someSearch*" using the wildcards below. If you don't use the double tilde, it will only search the beginning of words.

For example, doing a search for name:"file" or name:"ness" when the filename is "Aewsomeness Somefile.txt" would not show up unless you had the double tilde since those search terms are not at the beginning of words.

You can also use wild-cards like in the good old days (the single tilde lets you use the older style wildcards (? and *):

name:~"f?lena*"

The "?" is a place holder for any one character. The "*" is a place holder for any number of any characters.

11101101b
  • 455
  • 6
  • 10
James T
  • 10,351
  • 4
  • 30
  • 31
12

FileSeek

(Freeware by Binary Fortress Software)

FileSeek is a lightning fast, small and easy to use file searching application for Windows. It can even be integrated right into the Windows Explorer right-click menu to provide quick and easy access. FileSeek doesn’t use background indexing, so when FileSeek is closed your computer’s performance won’t be affected.

FileSeek works with 32-bit and 64-bit versions of Windows 7.

9

Google desktop

stim
  • 1,304
6
cd where.to.start.searching && dir /s /b *part.of.filename*
kizzx2
  • 997
5

I've always liked Agent Ransack, one of the best free file search utilities out there. You can search for file names or file contents and it has lots of other options such as boolean operators. It also comes in 32 or 64 bit.

MaQleod
  • 13,258
5

Since I've used Everything Search, I haven't cared where I save my files anymore. Everything even looks inside the Recycle Bin.

  • Regular expressions on filenames work.
  • You can search only specific paths by adding the path to the search string, e.g. "ctures\ *.jpg" for images in any user folder. The path cannot have wildcards though.
  • Its FAQ provides instructions on bypassing the UAC prompt. It's real unfortunate that ES hasn't updated in almost two years to add this scheduled task automatically or during setup. Well, just do this setup once and forget about it. Running it in startup is actually advised, because ES startup takes a few seconds in large file sets.
  • Just a tip: So ES won't slow the system down, if you have a background process that creates hundreds of temp files in a certain path, exclude that path.
William C
  • 2,529
4

Not an answer to your direct question but:

You can search by file name in windows search using the special syntax 'filename: %query%' in the search box. Though its probably fair to say this is much less discoverable than it should be. See this post (microsoft forums).

Hemi
  • 777
3

Cygwin

Then, find / -name "Name of file". I don't have much experience with Windows command line searching but the find utility ever fails me. Again, a batch/bash script file would make this an easy way to use a powerful search.

nopcorn
  • 16,982
3

FileSearchEX

FileSearchEX is the no nonsense file search utility for Windows 7. It offers the simplified search interface like Windows XP yet in an updated and modern fashion. Unlike other search tools, FileSearchEX works well with millions of items in the result pane.

  • Low system requirements.
  • Extremely simple search interface.
  • Portable application for easy network deployments.
  • Millions of search results can easily be navigated.
  • Users don't need to learn a new file search utility. XP style search.

screenshot

FileSearchEX is free for personal use on a personal computer.

3

You can try the search with command prompt. Very few people know about this.

Command Prompt Search

Hari
  • 1
3

I use Lookeen myself. It is an Outlook tool but can be used as a Windows Search solution as well. Unfortunately it is a bit expensive. But there I found a test demo. You should try it.

2

Super Find XT is another one.

2

Locate32

(Freeware by Janne Huttunen)

Locate32 is software which can be used to find files from your harddrives and other locations. It works like updatedb and locate commands in Unix based systems. In other words, it uses databases to store information about directory structures and uses these databases in searches. The use of these databases provides very fast searching speed. The software includes a dialog based application as well as console programs which can be used to both update and access databases. Supported operation systems are Windows 98/ME/NT4/2000/XP/Vista/7.

2

XSearch

(Freeware by www.easexp.com)

XSearch is a classic search tool with more features Windows Search does not provide. It works in classic way: no indexing service keeps scanning your files continuously in background.

It supports to search for files by file name, size, date time and words. Unlike in Windows Search, you can specify the exact size (Byte, KB, MB or GB), the exact date and/or time, and the different date time (Modified, Created, Last Visited).

You can specify the word or file name options such as "Any", "All", "Exact phrase", "Without" etc., and case sensitive, hexadecimal value, UTF8 and Unicode.

The HexView tool included in XSearch allows you to view files in hexadecimal, it acts like a read-only editor, and supports large files.

Supported OSes: Windows 2000/XP/Vista/2008/7

1

Install Cygwin and do Unix-style searches with find, grep, et al.

1

Try a program I wrote a couple of years ago: SwiftSearch

It only works for an admin account, and only for NTFS.

Update: I just open-sourced it! (see updated link)

user541686
  • 23,629
1

I am a real fan of Windows "Classic search" from 2000/XP, so for me EaseXP's free XSearch utility fills that gap on my Windows 7 x64 PC. It has a nice explorer-like results pane where you can manipulate the found files (open/cut/copy/delete, etc). However, I've experienced capricious application faults with XSearch; when this happens I tend to fall back to Astrogrep, which despite its name, can do file name only searches, and has seen some active development this year. I'm also leaning towards using Nirsoft's SearchMyFiles, which has useful duplicates and non-duplicates search modes, as well as a standard search mode.

To expand on a previous CMD.EXE solution, you could put the following in your CMD.EXE startup script, if you have one. (the full path to your startup CMD script needs to be defined in HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun registry key).

doskey f=dir /s /b "$*"

Example usage:

f D:\installers\*.msi
f C:\Documents and Settings\win*
Jimadine
  • 1,522
  • 1
  • 11
  • 15
1

FileSearchy

FileSearchy is a quick, powerful and easy to use utility to search files on your computer. It provides real-time search by file name. Unlike other search tools with instant file search, it also allows searching by content string, date and size. FileSearchy supports many popular formats and highlights found text in file name and contents.

Free for personal use.

lightstep
  • 286