Question:
How do I move files from my USB key to my desktop using cmd?
anonymous
2010-03-24 19:41:56 UTC
I'm trying to learn how to use cmd and I need to know how to move a file from my USB key to my desktop using cmd please do not just say that I can click and drag it onto my desktop because I'm seriosly trying to learn how to do this
Thank you ahead of time
Six answers:
Akshit Soota
2010-03-24 19:49:05 UTC
You can type the command "move /?" and see how to use this command.

You can try typing:-

"move /Y E:\filename.ext C:\Documents and Settings\\Desktop\filename.ext" where

/Y is to suppress prompting of moving and is the user name of your account on the current computer!



Hope it helps!
anonymous
2010-03-25 02:45:07 UTC
open a command window and type help

that will give you a list of commands and a brief description

you can then type any command with the help option to see more details and its syntax

for example, type:



xcopy /?



which will display this information:



Copies files and directory trees.



XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]

[/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]

[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z]

[/EXCLUDE:file1[+file2][+file3]...]



source Specifies the file(s) to copy.

destination Specifies the location and/or name of new files.

/A Copies only files with the archive attribute set,

doesn't change the attribute.

/M Copies only files with the archive attribute set,

turns off the archive attribute.

/D:m-d-y Copies files changed on or after the specified date.

If no date is given, copies only those files whose

source time is newer than the destination time.

/EXCLUDE:file1[+file2][+file3]...

Specifies a list of files containing strings. Each string

should be in a separate line in the files. When any of the

strings match any part of the absolute path of the file to be

copied, that file will be excluded from being copied. For

example, specifying a string like \obj\ or .obj will exclude

all files underneath the directory obj or all files with the

.obj extension respectively.

/P Prompts you before creating each destination file.

/S Copies directories and subdirectories except empty ones.

/E Copies directories and subdirectories, including empty ones.

Same as /S /E. May be used to modify /T.

/V Verifies each new file.

/W Prompts you to press a key before copying.

/C Continues copying even if errors occur.

/I If destination does not exist and copying more than one file,

assumes that destination must be a directory.

/Q Does not display file names while copying.

/F Displays full source and destination file names while copying.

/L Displays files that would be copied.

/G Allows the copying of encrypted files to destination that does

not support encryption.

/H Copies hidden and system files also.

/R Overwrites read-only files.

/T Creates directory structure, but does not copy files. Does not

include empty directories or subdirectories. /T /E includes

empty directories and subdirectories.

/U Copies only files that already exist in destination.

/K Copies attributes. Normal Xcopy will reset read-only attributes.

/N Copies using the generated short names.

/O Copies file ownership and ACL information.

/X Copies file audit settings (implies /O).

/Y Suppresses prompting to confirm you want to overwrite an

existing destination file.

/-Y Causes prompting to confirm you want to overwrite an

existing destination file.

/Z Copies networked files in restartable mode.



The switch /Y may be preset in the COPYCMD environment variable.

This may be overridden with /-Y on the command line.
deanyourfriendinky
2010-03-25 02:43:05 UTC
XCOPY



cmd opens a "Command Prompt". In the Command Prompt, type XCOPY /?



You will be shown instructions about how to use the command.



Probably, if you have a single partition on your hard drive and you have one CD/DVD drive, your USB key will be represented by the letter E:



You'll probably just type

XCOPY [options] [source] [destination]

and press Enter.



[NOTE: you'll type actual options, the actual source, and the actual destination, not just the words "options", "source", "destination".]
onemoreminute95
2010-03-25 02:47:52 UTC
it will look something like this



xcopy (source) (Destination) example below



xcopy K: C:\Documents and Settings\Admin\Desktop



the K: represents your flash drive & the the C:\Doc... represents your Desktop



if you open cmd and type xcopy /? it will give you a list of parameters you can use with xcopy
tbshmkr
2010-03-25 02:48:36 UTC
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination

=

for help: move /?
Mike
2010-03-25 02:44:21 UTC
xcopy /?


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...