CHAPTER.7\FINDFILE.BAT ·
BAT ·
495 B ·
1989-12-22 ·
from PCPlus_Help-Screen-Collection_1990
ECHO OFF
IF "%1"=="" GOTO HELP
chkdsk /v | find "%1" | more
GOTO END
:HELP
ECHO.
ECHO Format for the command is:
ECHO.
ECHO FINDFILE (filename)
ECHO.
ECHO The (filename) can be a complete file specification
ECHO or just a fragment. You cannot use wildcards, though,
ECHO and (filename) must be in CAPITAL letters.
ECHO.
ECHO It is a good idea to run CHKDSK /F first, in case you
ECHO have any lost clusters that might interfere with
ECHO the operation of FINDFILE
ECHO.
:END