home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / batch / freedisk.arj / FREEDEMO.BAT next >
DOS Batch File  |  1991-01-12  |  574b  |  21 lines

  1. Echo off
  2. Echo Batchfile for use with Freedisk:
  3. Echo --------------------------------
  4. Echo  
  5. Echo this batchfile is used to demonstrate the functions of freedisk v2.0
  6. Echo It will test if there if 4Mb diskspace available on drive C: and D:
  7. Echo with the command: FREEDISK C: 4000 25 D: 4000 35
  8. echo  
  9. Freedisk C: 4000 25 D: 4000 35
  10. if errorlevel=35 goto low_d
  11. if errorlevel=25 goto low_c
  12. if errorlevel=0 goto end
  13. :low_d
  14.   Echo Perform here your specific "low D" task's 
  15.   goto end
  16. :low_c
  17.   Echo Perform here your specific "low C" task's 
  18.   goto end
  19. :end
  20.  
  21.