home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / dirutl / du_pv.arc / DU.DOC < prev   
Text File  |  1988-02-14  |  1KB  |  36 lines

  1. du    - show disk use
  2.  
  3. SYNOPSIS
  4.     du [/h] [/nnn] name
  5.  
  6. DESCRIPTION
  7.     Lists the disk space used by the given directory, and in all
  8.     subdirectories thereof.  If no name is given, lists the current
  9.     directory.  If the "/h" switch is used, it will report hidden and
  10.     system directories as well; in any case, the disk usage figures will
  11.     includes files contained in hidden directories.
  12.  
  13.     Gives subtotals for all subdirectories in the given directory.
  14.  
  15.     The first column gives the total bytes actually used; the second column
  16.     gives disk space consumed.  The difference is that disk space is
  17.     allocated in chunks, each file will (on the average) waste half a chunk.
  18.     1K=1024 bytes.  If the /nnn parameter is given, the cluster size used
  19.     for this computation will be:
  20.         /0    the actual cluster size for this drive (default;
  21.             overrides other previous settings)
  22.         /1    512 bytes (single sided diskette)
  23.         /2    1024 bytes (double sided diskette) (useful for figuring
  24.             out how much space a given directory would take up on a
  25.             diskette).
  26.         /nnn    (nnn>=3) nnn
  27.         /nnK    nn * 1024
  28.  
  29. FILES
  30.     \local\du.com
  31.     \local\src\du.asm
  32.  
  33. BUGS
  34.     Does not report disk space used by subdirectories themselves (just
  35.     their files).
  36.