home *** CD-ROM | disk | FTP | other *** search
/ Boldly Go Collection / version40.iso / TS / 10A / DOS5BAT.ZIP / SHOWHIDN.BAT < prev    next >
DOS Batch File  |  1991-11-02  |  272b  |  12 lines

  1. @ECHO OFF
  2. REM This is SHOWHIDN.BAT
  3. REM
  4. REM SHOWHIDN.BAT display any hidden files on the current drive, except
  5. REM those in hidden subdirectories. This also needs DOS 5.0 to work.
  6. REM
  7. IF %1!==! GOTO DIRROOT
  8. DIR %1 /AH /S /P
  9. GOTO END
  10. :DIRROOT
  11. DIR \ /AH /S /P
  12. :END