Unix-type "locate" on Windows?

17

11

Using the Windows CLI (cmd), how does one locate a file that he knows part of the name of? For instance, every single Windows workstation installs javac in a different location, how would one find it from the Windows CLI (cmd)?

Googling I see mention only of using the Windows Explorer (file manager) GUI or downloading some freeware application. Does Windows really not have a locate command built in? Do the server editions have it? I do not want to install cygwin or anything else, these are typically not my machines.

dotancohen

Posted 2011-08-23T19:28:21.743

Reputation: 9 798

1

@JohnT that location no longer works - the updated locate32 home is https://locate32.cogit.net/

– TrojanName – 2018-10-08T15:55:01.583

1

Try the Git-Bash.exe aka MINGW which includes locate and updatedb --per https://stackoverflow.com/questions/36841241/can-i-get-the-locate-to-work-on-windows-through-git-bash

– MarkHu – 2019-04-04T22:45:56.177

3

Nothing built-in to the Windows command-line is really similar to locate. I would recommend locate32 ( http://www.locate32.net/ )

– John T – 2011-08-23T19:58:18.867

javac should usually be at the same place... – Tamara Wijsman – 2011-08-23T21:47:37.083

Answers

22

You should be able to do what you need to do with dir:

dir [filename] /s

Replace [filename] with the filename you're looking for, you should be able to use wildcards. /s makes it search sub-directories so if you need to you can start in the root of C: and have it check the entire drive.

Windos

Posted 2011-08-23T19:28:21.743

Reputation: 10 080

Doesn't work with multiple drives/partitions. And even back 2011, I had more than just C: Linux' locate doesn't care about filesystems. – Jürgen A. Erhard – 2015-09-11T05:34:37.830

1@JürgenA.Erhard to be fair... Linux itself doesn't really care about 'file systems' as Windows presents them (to my limited understanding.) These days if you wanted to search across more than one drive PowerShell would be my go to though, as you'd be able to group together all your volumes and gun Get-ChildItem on all of them. – Windos – 2015-09-11T06:36:01.807

This worked great in XP. I think versions after that can use where command, though maybe just for executables – Mark Adamson – 2016-08-10T14:46:37.277

If you're searching the entire drive for a common file name it may also pay to include /p to that it only presents you with a page of results at a time. – Windos – 2011-08-23T19:41:26.070

Thank you, this looks perfect. I do often know at least that I need to search in C:\WINDOWS so this could narrow down the time that the search takes. – dotancohen – 2011-08-23T20:41:08.187

1I don't think that javac is installed to C:\WINDOWS... – Tamara Wijsman – 2011-08-23T21:47:49.440

12

Nobody talks about "where" command? it search executable file in PATH of current environment.

where <executable>

c:\ where
The syntax of this command is:

WHERE [/R dir] [/Q] [/F] [/T] pattern...

Description:
    Displays the location of files that match the search pattern.
    By default, the search is done along the current directory and
    in the paths specified by the PATH environment variable.

Kuddusi Çiftçibaşı

Posted 2011-08-23T19:28:21.743

Reputation: 121

4

Windos has the most straightforward answer. But if you're fond of the command line, you may want to look at powershell too. To accomplish the same type of search you'd use

get-childitem [starting path eg c:\users\] -filter [wildcarded search or filename] -recurse

Which has the nice side benefit of being able to be pumped into a handy foreach statement and run a process against the search results.

get-childitem [starting path eg c:\users\] -filter [wildcarded search or filename] -recurse |
    foreach ($_){
          [do something to $_.fullname , like maybe display my image file or relocate it etc..]
    }

OldWolf

Posted 2011-08-23T19:28:21.743

Reputation: 2 293

Fortunately, unlike in cmd, in PowerShell you can use "Tab" to see suggestions, like in Linux. So it's not so many to type actually. And, in my case, ls in PowerShell is not working. – WesternGun – 2016-11-25T09:05:04.150

3This feels too long to type out. – Tamara Wijsman – 2011-08-23T21:48:29.360

2Get-ChildItem can be abbreviated as gci or ls. – digitxp – 2011-08-23T22:19:28.070

3

I simply got a locate program for Windows. You just need to follow the read me instructions and copy the .dll files and .exe to system32.

Alternative includes adding the program path to the environment variable PATH.

The idea is to get locate on Windows if you're looking for something "like" locate. :)

Cheeku

Posted 2011-08-23T19:28:21.743

Reputation: 139

@dotancohen - There is a portable version. I also have restrictions in my system, and I could use the portable right away with no problems. So far, I found it outstanding. Quite configurable. – sancho.s Reinstate Monica – 2014-11-06T14:03:37.303

1

@Cheeku - This is the same app pointed at by John T. It is not CLI as the OP asked, but it is awesome.

– sancho.s Reinstate Monica – 2014-11-06T14:05:54.433

Thank you Cheeku, that looks like a handy application. However I did mention that I cannot install applications on the system as they are typically not my systems. – dotancohen – 2013-12-23T08:36:52.130

2Yes, but I answered anyways becasue other people like me can find it useful and others won't be confused since this post already has an accepted answer! – Cheeku – 2013-12-23T17:37:02.103

1locate is on my Win7 computer. It complains about the database being 435 days old, when the intallation is not more than 3 months old. And updatedb is not included. – vinnief – 2014-01-16T14:46:52.647

@vinnief That's a particular problem with your installation, I presume. – Cheeku – 2014-01-16T23:28:40.793

I suppose so, no time to check. I was surprised to find locate at all. – vinnief – 2014-01-17T12:49:47.107

2

The question is somewhat ambiguous.

You want to locate a file (stated in the body of the OP), but you also want a "locate-type" command/app (stated in the title). There is one subtle consideration with huge implications. You can locate with two different methods:

  1. Searching the target tree structure directly in each search (slow).

  2. First creating a database of the target tree structure (may be time-consuming), and then locating by searching the database (very fast). The database has to be updated periodically to obtain good results in searches. See http://en.wikipedia.org/wiki/Locate_%28Unix%29.

Unix locate is of "type 2", but as per the body of your OP, you would be ok with any of the two methods. Moreover, you ask specifically about CLI options.

I list below some options, and I specify whether they are CLI / GUI, type 1 / 2, and I add some comments.

  1. http://locate32.cogit.net/ (already pointed at by John T and then by Cheeku). GUI, type 2. There is a portable version. Outstanding easiness of use, and configurability. Very similar to Unix locate (which I used and liked a lot).
    Note: Being used to Unix's Updatedb taking quite long to update a database (of course, it depends on the size of the scanned tree), I find locate32 extremely fast. I do not know how it can be so much improved.

  2. http://sourceforge.net/projects/winlocate/ CLI, type 2.

  3. dir [filename] /s, the solution by Windos. CLI, type 1.

  4. gci ..., the solution by OldWolf. CLI, type 1.

  5. http://gnuwin32.sourceforge.net/packages/findutils.htm CLI, type 2.

  6. Everything GUI, type ?.

sancho.s Reinstate Monica

Posted 2011-08-23T19:28:21.743

Reputation: 2 404

1Thank you, this is a good explanation and a nice summary of options. – dotancohen – 2014-11-06T14:35:08.380

2

I created a PowerShell port for locate and updatedb. Uses SQLite as a backend, and has an auto installer. Just

.\Invoke-Locate.ps1 -install. 

locates take about 300ms/query.

Then

locate whatever

and you're set.

enter image description here

https://gallery.technet.microsoft.com/scriptcenter/Invoke-Locate-PowerShell-0aa2673a

Chrissy LeMaire

Posted 2011-08-23T19:28:21.743

Reputation: 121

2

No need to install by hand. See http://chocolatey.org

choco install winlocate

Restart shell environment

Updatedb.bat -a
Locate.bat somefile

Jonathan

Posted 2011-08-23T19:28:21.743

Reputation: 1 287

1winlocate is not (anymore) on Chocolatey. – Lennart – 2016-08-12T06:11:13.480

2

I know this one was answered a long time ago, however this is my script to simulate the locate function used in unix/linux

Save this as locate.bat and place in System32 OR run from directory it's stored in. Takes one parameter like this "cmd> locate javac.exe"

The locate /c switch (as a 2nd parameter will count the number of instances ) and locate /? will display the help text

@echo off 
if [%1]==[] goto :usage
if [%1] == [/?] (
:usage
echo Usage: 
echo locate "filename" { optional } /c { shows counter }
echo note:  results are exported to C:\temp\result.txt
goto :EOF
) else (
     setlocal EnableDelayedExpansion
     dir /a /b /s C:\ | findstr /I "%1" > C:\temp\result.txt 
     type C:\temp\result.txt | more /S
     set counter=0
     if [%2] == [/c] (
         for /F %%i in ('type C:\temp\result.txt') do (
             set /a counter=!counter!+1
         )
         echo Total Matches: !counter!
      ) 
)
endlocal > nul  
goto :EOF

EDIT: (Updated Script, more organized and can handle a wider variety of situations, such as allowing for any search term not just a filename)

@echo off
::initialize local varaibles to default values
setlocal

set file=
set directory=
set toppath=top

::some switch validation ( from command line )
if [%1]==[] goto :Usage
if [%1]==[/?] goto :Usage
if [%1]==[/help] goto :Usage

::handle switches with if structures
if [%2]==[/c] (
     set count=yes
) ELSE (
     if [%2]==[/t] ( if [%3]==[] (goto :Usage) else (set toppath=%3))   
     if [%4]==[/c] (
          set count=yes
     ) ELSE (
          set count=
     )
)
set file=%1

::Directory Validation ( Goto jumps possible, along with raptors ) 
if [%toppath%] == [] ( 
    IF NOT EXIST %toppath% goto :FolderInvalid 
) else (
    if [%toppath%] neq [top] set directory=%toppath%
)
set toppath=
setlocal EnableDelayedExpansion

::Run Bulk of the Script
dir /a /b /s %directory% | findstr /I "%file%" > C:\temp\result.txt 
type C:\temp\result.txt | more /S
     set counter=0
     if [%count%]==[yes] (
         for /F %%i in ('type C:\temp\result.txt') do (
             set /a counter=!counter!+1
     )
     echo Total Matches: !counter!
) 

goto :End

:Usage
echo locate ^[file^] {term^/file to look for} ^| ^[^/t^] {dir^/subdirs to search} ^| ^[^/c^] {show counter}
echo.
echo notes to user:  1. Results are exported to C:\temp\result.txt
echo                 2. Default search dir is the current unless specified by ^/t switch
echo                 3. For best results write switches in order given ! ( or beware of raptors )
goto :End

:FolderInvalid
echo Folder Invalid

:End
endlocal > nul

user422773

Posted 2011-08-23T19:28:21.743

Reputation:

1

For future space Windows historians: we have been blessed with Everything Search. Picture dmenu+find+mlocate rolled up into a tight, pretty little Windows service w/ cli options. Except this thing updates its index in real time. Nothing on Linux comes close. It will be one of the few times you will say "gee I wish this darn kernel was a little more Microsofty"

Steve Goranson

Posted 2011-08-23T19:28:21.743

Reputation: 111

Nice utility. Thanks for posting. – Rudiger Wolf – 2019-11-06T14:25:15.753

1

The short answer is that there is no exact equivalent on Windows. The workaround is to use the dir command. This is a directory list command that supports special characters, and can be used as pointed out in the accepted answer.

The Locate command on many Unix like systems is an index based search. It works in tandem with the Updatedb command that indexes file systems. Since it is an index based search, it is usually much faster than text based search commands such as dir and find on Unix, especially when searching deep directory hierarchies.

dww

Posted 2011-08-23T19:28:21.743

Reputation: 111

where is exact equivalent. – Alex78191 – 2019-07-26T15:18:57.137

-3

I'm not aware of any CLI method to do this in Windows. Keep in mind that the Windows CLI has been abandoned by common users, so it offers a generally less mature set of tools. Your best bet might be using the gnu find in Windows, which you can get from GnuWin32. If you're developing a script, you'd just have to include find.exe and its dependencies with the script (don't worry, it's not very big).

jcrawfordor

Posted 2011-08-23T19:28:21.743

Reputation: 15 203