home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / assemutl.zip / FREE.DOC < prev    next >
Text File  |  1985-05-11  |  1KB  |  44 lines

  1.  
  2.        FREE.COM is a small machine language routine that reports the free
  3.     space on a given disk.  Without any parameters it displays the space on
  4.     the default disk, and with parameters it displays the space on the
  5.     disks specified.  A non-drivspec parameter will cause FREE to exit,
  6.     ignoring the rest of the command line.
  7.  
  8. Examples:
  9.  
  10. A>free
  11.  
  12. Drive A: xxxxx bytes free
  13.  
  14. A>free a: b:
  15.  
  16. Drive A: xxxxx bytes free
  17. Drive B: xxxxx bytes free
  18.  
  19. A>free a: b: c:
  20.  
  21. Drive A: xxxxx bytes free
  22. Drive B: xxxxx bytes free
  23. Drive C: invalid        (unless you happen to have a drive c:)
  24.  
  25. A>free a: hi! b:
  26.  
  27. Drive A: xxxxx bytes free
  28.  
  29. A>free foobar
  30.  
  31.  
  32. A>
  33.  
  34.        This routine is useful in checking the disk space on multiple drives
  35.     or when you don't feel like sitting through a DIR or CHKDSK.  When put
  36.     on a RAMDISK, this utility is very helpful as it will act almost as
  37.     fast as an internal command.
  38.  
  39.        There are a few useful routines in the assembler listing such as
  40.     convert doubleword to decimal and parse DOS command line.
  41.  
  42.     Please report any bugs to Alan Bishop - CIS 72405,647
  43.  
  44.