home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 197 / DOS5BAT.ZIP / FILEFIND.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-11-03  |  448 b   |  16 lines

  1. @ECHO OFF
  2. REM This is FILEFIND.BAT
  3. REM FILEFIND.BAT helps you locate misplaced files. While the new DIR/S command
  4. REM can uncover many of these, FILEFIND.BAT finds any files on your default
  5. REN disk, including those in hidden subdirectories(something DIR/S won't do):
  6. REM
  7. IF %1!==! GOTO OOPS
  8. ECHO Searching for %1 . . .
  9. ATTRIB /%1 /S | MORE
  10. GOTO END
  11. :OOPS
  12. ECHO Enter the name of the
  13. ECHO file you want to find
  14. ECHO after the %0
  15. :END
  16.