home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
batch
/
freedisk.arj
/
FREEDEMO.BAT
next >
Wrap
DOS Batch File
|
1991-01-12
|
574b
|
21 lines
Echo off
Echo Batchfile for use with Freedisk:
Echo --------------------------------
Echo
Echo this batchfile is used to demonstrate the functions of freedisk v2.0
Echo It will test if there if 4Mb diskspace available on drive C: and D:
Echo with the command: FREEDISK C: 4000 25 D: 4000 35
echo
Freedisk C: 4000 25 D: 4000 35
if errorlevel=35 goto low_d
if errorlevel=25 goto low_c
if errorlevel=0 goto end
:low_d
Echo Perform here your specific "low D" task's
goto end
:low_c
Echo Perform here your specific "low C" task's
goto end
:end