cmd terminal option to find file in c drive code example
Example 1: command line windows find file
dir secret.doc /s /p
Example 2: find name file in cmd
echo off
:start
cls
set /p input=masukan nama ? &
set result=| dir /a *.* /b | find "%input%"
echo %result%
pause
goto start