233k views
1 vote
2. Using a command prompt window, copy the two files in your Documents folder to a folder named \Save on USB flash drive. Don’t include subfolders in the copy. Create a new subfolder named \Save\My files on the flash drive. Copy (don’t move) the two files in your \Save folder to the \Save\My files folder. with screen snip.

User Juel
by
7.9k points

1 Answer

6 votes

To use the command prompt window, the Instructions to follow are:

  • Connect the USB flash drive to your computer.Open the Command Prompt window.
  • Navigate to the folder containing the two files you want to copy:cd Documents
  • Use the xcopy command to copy the files to the \Save folder on the USB flash drive:xcopy *.txt F:\Save /E /X /C /I
  • Replace F: with the actual drive letter of your USB flash drive.
  • Create a new subfolder named \Save\My files on the flash drive:mkdir F:\Save\My files
  • Copy the two files from the \Save folder to the \Save\My files folder: xcopy *.txt F:\Save\My files /E /X /C /I

Lastly, Close the Command Prompt window.

User Iwazovsky
by
8.7k points