answersLogoWhite

0


Best Answer

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

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

XCOPY

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: DOS command to copy multiple files?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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


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.


Three os files necessary to boot to ms-dos mode?

Generally, the 3 files you need on a disk to run MS-DOS are IO.SYS, MSDOS.SYS, and Command.com. You cannot just copy IO.SYS and MSDOS.SYS, but you have to use the SYS command. Newer versions also copy command.com, but older ones didn't. So make sure command com exists after running SYS on the diskette or other drive.