home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / educatio / dosguide.zip / 8.DOC < prev    next >
Text File  |  1992-03-28  |  1KB  |  50 lines

  1.  
  2. COPY
  3.  
  4.       PURPOSE:
  5.               Copies one or more files to another location.
  6.  
  7.  
  8.  
  9.       NOTE:
  10.            In the following, "drive:" stands for any drive on the
  11.            computer ( such as A:, B:, or C: ) and "filename"
  12.            stands for the name of any file that you are copying.
  13.  
  14.  
  15.       COMMAND:                  USAGE:
  16.  
  17.       copy filename drive:      Copies a specific file to a
  18.                                 specific drive.
  19.  
  20.       copy *.* drive:           Copies all the files on the current
  21.                                 drive to the specified drive.
  22.  
  23.  
  24.      COPYING FILES FROM ONE DIRECTORY OR SUBDIRECTORY TO ANOTHER:
  25.  
  26.      example:
  27.              To copy a file called history.doc from your
  28.              working drive and directoy to a directoy on
  29.              drive C called school, type:
  30.  
  31.                   copy history.doc C:\school
  32.  
  33.      example:
  34.              To copy a file called science.doc from your
  35.              working drive and directoy to a directoy on
  36.              your floppy drive A:   type:
  37.  
  38.                   copy science.doc A:
  39.  
  40.  
  41.  
  42.      example:
  43.              To copy a file called math.doc from your
  44.              floppy drive A: to the directory you are working
  45.              in on your hard disk C:  type:
  46.  
  47.                   copy A:math.doc C:
  48.  
  49.  
  50.