answersLogoWhite

0

Depends on which operating system you are using and whether you want to copy more than one file.

In DOS/Windows command prompt "c:\copy xxxx /destination_folder/"
if more than one file you can use "c:\copy xxx.* /destination_folder/"

Xcopy has more options (verify, copy subdirectories ..) and is used "c:\xcopy xxx* /s /destination_folder/"

In Unix/Linux/OSX cp is the command for copying
as in "#darkstar$cp -R *.txt /destination_folder/"
cp has a lot more option than xcopy but you will need to type either "cp --help" or "man cp" to get the best of cp's actions.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Copy con command used for?

In MS-DOS, the copy con command is used for the creation of files from the command line. From the command line enter "copy con" and the name of the file desired to be created.


What is the DOS command used to copy ALL of the files on one floppy disk to memory and then copy that same information to multiple other floppy diskettes with one command?

DISKCOPY is the command to copy all of the files to memory and then copy those files to another disk. Unfortunately, it does not copy to multiple disks. Here is the syntax: DISKCOPY [drive1: [drive2:]] [/1] [/V] [/M] /1 Copies only the first side of the disk. /V Verifies that the information is copied correctly. /M Force multi-pass copy using memory only.


What is the DOS copy command to copy a complete directory to multiple 3.5 inch floppies?

To copy directory, you need to run xcopy command.. You can not copy directory with copy command.. xcopy c:\*.* /s/e a:\ This will copy entire contents to A drive..


Which command of MS-DOS is used to copy only files that have been modified on or after the date you specify?

XCOPY/D : date


What is the difference between copy con and copy in MS-DOS?

In MS-DOS, "copy con" is a command used to create a new text file and enter text directly from the command prompt. On the other hand, "copy" is a command used to copy files from one location to another. The "con" in "copy con" stands for console, indicating that the text is being copied from the console input.


How do you copy a folder using ms-dos?

The COPY command


How do you copy files to ram in ms-dos?

To copy files to RAM in MS-DOS, you have to use the COPY function after converting the file to a system file with the *.sys extension.


What is the difference between Copy Xcopy and diskcopy?

These are all DOS commands for the old PC DOS operating system. Copy could copy some combination of file or files (via wildcards) within a given directory, xcopy could do that as well as copy directories, diskcopy could make duplicates of disks usually floppy disks.


What is the s switch in formats?

When using the format command in DOS, the /s command-line argument "format c: /s" tells the system to copy over the system files necessary to make the drive DOS bootable. It is the same as using the "sys" command after finishing the format.


What MS-DOS command can display hidden files?

The attrib command is capable of displaying files that have been marked as hidden.


What command of DOS is used to examine the files in a directory?

DIR


What other dos commands will transfer msdod.syc system file from one drive to another?

I think you meant msdos.sys. The commands in DOS used to move files are COPY and XCOPY. These commands will move files between drives or between folders.Most DOS commands have an online explanation if you follow the command with a /?.An example of copying is COPY filename.exe D: if you are already on the C: drive.XCOPY is more versatile with more than 20 different switches It can copy hidden andsystem files, as well.