2018-08-06 10:29:09 +02:00
|
|
|
# where
|
|
|
|
|
|
|
|
> Display the location of files that match the search pattern.
|
|
|
|
> Defaults to current work directory and paths in the PATH environment variable.
|
2022-10-04 20:36:23 +05:30
|
|
|
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/where>.
|
2018-08-06 10:29:09 +02: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:
|
|
|
|
|
2023-02-20 17:23:49 +10:00
|
|
|
`where /R {{path\to\directory}} {{file_pattern}}`
|
2018-08-06 10:29:09 +02:00
|
|
|
|
2022-10-19 19:25:13 +03:00
|
|
|
- Silently return the error code for the location of the file pattern:
|
2018-08-06 10:29:09 +02:00
|
|
|
|
|
|
|
`where /Q {{file_pattern}}`
|