home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
battutor.l!h
/
TESTFIND.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-11-02
|
448b
|
22 lines
echo off
Rem. testfind.bat %1 revised 14-aug-83
findfile %1
if errorlevel 5 goto notfound
if errorlevel 3 goto disk3
if errorlevel 2 goto disk2
if errorlevel 1 goto disk1
echo found %1 on drive A:
goto exit
:disk1
echo found %1 on drive B:
goto exit
:disk2
echo found %1 on drive C:
goto exit
:disk3
echo found %1 on drive D:
goto exit
:notfound
echo file not found
:exit