To locate a file or directory on your local computer or a remote computer, use WHERE.EXE. The following line shows WHERE command-line syntax:
where [/r dir] [/qte] pattern
For example, the following command will find all occurrences of FileName on the PATH:
where FileName
The following command will find all occurrences of FileName, searching recursively from the current directory:
where /r . FileName
The following command will find all occurrences of FileName on the specified network share:
where /r \\ServerName\ShareName FileName