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.