Difference between revisions of "Windows command prompt"
Jump to navigation
Jump to search
(update; extend) |
(Created page with "Copying files off Windows using only the command prompt <pre> c: or d: or e: or z: or other letter with : = to change between different drives and USB drive dir = to check th...") |
||
Line 1: | Line 1: | ||
− | + | Copying files off Windows using only the command prompt | |
− | |||
− | |||
− | |||
− | |||
− | |||
<pre> | <pre> | ||
c: or d: or e: or z: or other letter with : = to change between different drives and USB drive | c: or d: or e: or z: or other letter with : = to change between different drives and USB drive |
Revision as of 05:45, 2 October 2015
Copying files off Windows using only the command prompt
c: or d: or e: or z: or other letter with : = to change between different drives and USB drive dir = to check the content of the folder (what files and folders are in it) dir /s = to check the size of the folder you are in cd "name of the folder" = to open a folder cd .. = to leave the folder(go one level up) To copy a file: xcopy "name of the file" "full address of the destination where you want to copy it" To copy a folder with subfolders: xcopy "Name of the folder" "full address of the destination where you want to copy it" /s /i