home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Boldly Go Collection
/
version40.iso
/
TS
/
10A
/
DOS5BAT.ZIP
/
SHOWHIDN.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-11-02
|
272b
|
12 lines
@ECHO OFF
REM This is SHOWHIDN.BAT
REM
REM SHOWHIDN.BAT display any hidden files on the current drive, except
REM those in hidden subdirectories. This also needs DOS 5.0 to work.
REM
IF %1!==! GOTO DIRROOT
DIR %1 /AH /S /P
GOTO END
:DIRROOT
DIR \ /AH /S /P
:END