cmd to find find file code example

Example 1: find files in windows command

# For finding file use dir followed by string matching file name or regex
# pattern and add "/s" for searching recursively in subfolders:
dir /s "regex_or_file_name"
# For finding file contained in a searched directory use "/b":
dir /b "directory_name"
# Use respectively '/a-d' or '/ad' for finding only files or only folders.

Example 2: command line windows find file

dir secret.doc /s /p

Example 3: cmd to find find file

find /path option filename

Tags:

Misc Example