home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM This is FILEFIND.BAT
- REM FILEFIND.BAT helps you locate misplaced files. While the new DIR/S command
- REM can uncover many of these, FILEFIND.BAT finds any files on your default
- REN disk, including those in hidden subdirectories(something DIR/S won't do):
- REM
- IF %1!==! GOTO OOPS
- ECHO Searching for %1 . . .
- ATTRIB /%1 /S | MORE
- GOTO END
- :OOPS
- ECHO Enter the name of the
- ECHO file you want to find
- ECHO after the %0
- :END
-