home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mega CD-ROM 1
/
megacd_rom_1.zip
/
megacd_rom_1
/
DESQVIEW
/
DSLIST.ZIP
/
DSLIST.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-03-08
|
536b
|
32 lines
echo off
cls
if not exist %3\%1.%2 goto case2
:name & extension not in root directory
list %3\%1.%2
goto end
:case2
if not exist %2\%1 goto case3
:no extension, not in root directory
list %2\%1
goto end
:case3
if not exist %3%1.%2 goto case4
:name & extension in root directory
list %3%1.%2
goto end
:case4
if not exist %2%1 goto oops
:no extension, in root directory
list %2%1
goto end
:oops
echo Something's wrong here.
echo Was the mouse in the directory window
echo when you pressed ALT-L?
:end