2018-08-06 09:29:09 +01:00
|
|
|
# where
|
|
|
|
|
|
|
|
> Display the location of files that match the search pattern.
|
|
|
|
> Defaults to current work directory and paths in the PATH environment variable.
|
2019-08-22 13:37:57 +01:00
|
|
|
> More information: <https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/where>.
|
2018-08-06 09:29:09 +01:00
|
|
|
|
|
|
|
- Display the location of file pattern:
|
|
|
|
|
|
|
|
`where {{file_pattern}}`
|
|
|
|
|
|
|
|
- Display the location of file pattern including file size and date:
|
|
|
|
|
|
|
|
`where /T {{file_pattern}}`
|
|
|
|
|
|
|
|
- Recursively search for file pattern at specified path:
|
|
|
|
|
|
|
|
`where /R {{path/to/directory}} {{file_pattern}}`
|
|
|
|
|
|
|
|
- Display only the error code for the location of file pattern:
|
|
|
|
|
|
|
|
`where /Q {{file_pattern}}`
|