find folder in run windows 10 code example
Example 1: open current folder in explorer from cmd
The period is used in the Command Prompt as a shorthand for the current folder.
Enter start .
or
Enter Explorer .
Example 2: find directory in windows
# 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.