Write a command to display all files in and under your current directory. (Command prompt is not specified intentionally). code example
Example: dos dir filename only
# Windows - cmd specific
# syntax
dir /s /b <search-string>
# example (to find any files/folders with names containing "hoto", like Photo)
dir /s /b *hoto*