Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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.

Thanks.

share|improve this question
Nothing built-in to the Windows command-line is really similar to locate. I would recommend locate32 ( locate32.net ) – John T Aug 23 '11 at 19:58
javac should usually be at the same place... – Tom Wijsman Aug 23 '11 at 21:47

3 Answers

up vote 7 down vote accepted

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.

share|improve this answer
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 Aug 23 '11 at 19:41
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 Aug 23 '11 at 20:41
1  
I don't think that javac is installed to C:\WINDOWS... – Tom Wijsman Aug 23 '11 at 21:47

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..]
    }
share|improve this answer
This feels too long to type out. – Tom Wijsman Aug 23 '11 at 21:48
1  
Get-ChildItem can be abbreviated as gci or ls. – digitxp Aug 23 '11 at 22:19

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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