home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / FLOPPIES / DIRCOPY1.ZIP / DC.DOC next >
Encoding:
Text File  |  1990-06-10  |  3.0 KB  |  80 lines

  1.                                  DirCopy
  2.  
  3.  
  4. Introduction:
  5.    I wrote this program to copy a collection of files, onto as few disks
  6. as possible, hence "0 bytes free".  It was originally conceived as a tool
  7. for moving a directory from one machine to another easily.  As it turns
  8. out, it does that job quite handilly (except for the sub-dirs), but I also
  9. use it to back up some of my directories.
  10.  
  11.    Enough said, here's what you need to know to use it.
  12.  
  13.  
  14. Usage:
  15. c> DC source_dir destination_drive
  16.  
  17. The source must specify a directory, but can optionally specify a wildspec
  18. also.  The destination must be a disk indicator.  So what does all that mean,
  19. it means that you can type things like this:
  20.  
  21. c> DC . A:         ! Copy all files in the current directory onto a collection
  22.                      of floppy disks that you are going to insert into the
  23.                      A Drive.
  24.  
  25. c> DC e:\util B:   ! Same type of thing except these files come from the
  26.                      E drive, and the sub-dir UTIL
  27.  
  28. c> DC C:\*.com A:  ! Only twist here is to pick up just the *.COM files.
  29.  
  30.  
  31. You now know enough to use this little tool.
  32.  
  33.  
  34. Comments:
  35. If you are interested in sponsoring the author, then SEND NO MONEY, just
  36. let me know that you like it.  If enough people think the tool is worth
  37. something then maybe I will enhance it.  I have a long list of enhancements
  38. but this weekend is just about over, and it is off to bigger and better
  39. things.
  40.  
  41. This program has been released to the public domain.  Author assumes no
  42. liabilities or responsibilities.  Use it at your own risk.  No fee may
  43. be charged for the program (distribution fees excluded).
  44.  
  45.  
  46. Closing:
  47.                                           Happy Copying
  48.                                           Keith E. Robbins
  49.                                           CIS 71121,2426
  50.  
  51. P.S. Have you tried DirSize.  It provides a graphical tree that gives you
  52.      a lot of information.  This is a sample of its output.
  53.  
  54. c> DS d:\turbo\tp
  55.  
  56.   Dir size  File size  Files Directory name
  57.    5261313    761856    23   D:\TURBO\TP
  58.                63488     4   ├───DEMOS
  59.                32768     4   ├───DOC
  60.    2887681     55297     9   ├─┬─EDITOR
  61.               428032    41   │ ├───BINARY
  62.               874496    80   │ ├───FIRST
  63.              1529856    76   │ └───MICRO
  64.     583680     14336     6   ├─┬─GAMEWORK
  65.               212992    11   │ ├───BRIDGE
  66.               307200    29   │ ├───CHESS
  67.                49152     6   │ └───GO
  68.     626688    544768    38   ├─┬─GRAPHIX
  69.                81920    29   │ └───DEMO
  70.               245760    27   ├───PPROGS
  71.                55296     3   ├───TURBO3
  72.                 4096     3   └───SAVA
  73.  
  74.   Space allocated:  5261313   22.8%
  75.   Space available:  3315712   14.3%
  76.  
  77. DirSize is also public domain.  It you like it then please SEND NO MONEY.
  78. Just show a little interest.  But in this case, comments on enhancements
  79. would be appreciated.  I don't have a long list of ideas for DirSize.
  80.