home *** CD-ROM | disk | FTP | other *** search
-
- COPY
-
- PURPOSE:
- Copies one or more files to another location.
-
-
-
- NOTE:
- In the following, "drive:" stands for any drive on the
- computer ( such as A:, B:, or C: ) and "filename"
- stands for the name of any file that you are copying.
-
-
- COMMAND: USAGE:
-
- copy filename drive: Copies a specific file to a
- specific drive.
-
- copy *.* drive: Copies all the files on the current
- drive to the specified drive.
-
-
- COPYING FILES FROM ONE DIRECTORY OR SUBDIRECTORY TO ANOTHER:
-
- example:
- To copy a file called history.doc from your
- working drive and directoy to a directoy on
- drive C called school, type:
-
- copy history.doc C:\school
-
- example:
- To copy a file called science.doc from your
- working drive and directoy to a directoy on
- your floppy drive A: type:
-
- copy science.doc A:
-
-
-
- example:
- To copy a file called math.doc from your
- floppy drive A: to the directory you are working
- in on your hard disk C: type:
-
- copy A:math.doc C:
-
-