Finding files

Command to find a file with a particular string in the name

C:\> dir C:\*string* /s /b

a) /s: Searches subdirectories

b) /b: Provides the results in a clean format - only displays file paths

Powershell

The Get-ChildItem command be used. Refer to the dedicated section on POWERSHELL for more inforamtion.

Last updated