PDF download Download Article PDF download Download Article

Whether you're unable to boot into Windows or just want to learn new ways to manage files, you can use the Command Prompt to copy data from your hard drive to your flash drive. If you're just copying individual files, you can use the copy command. But if you want to copy an entire folder, including any subfolders and files inside, the xcopy command is a better option. This wikiHow teaches you how to use both copy and xcopy to copy files and folders at the Windows Command Prompt.

  1. If you haven't already done so, here's how you can access your Windows command prompt:
    • Press Windows key + S to activate the search bar.
    • Type cmd into the search bar.
    • If you need to copy system files, right-click Command prompt and select Run as administrator .
      • You don't have to do this if you're booted into recovery mode, as the Command Prompt will always run as an administrator this way.
    • If you're copying personal files, like your own pictures or documents, just click Command prompt .
  2. If you already know the letter assigned to the drive (e.g., E or F ), you can skip this step. If not, here's how to find it:
    • Type or paste this command after the prompt: wmic logicaldisk where drivetype=2 get deviceid, volumename, description
    • Press Enter .
    Advertisement
  3. If you want to copy files to a specific folder rather than the root of your flash drive, you can create one at the command prompt. Here's how:
    • Type cd F: (if your flash drive isn't F: , replace it with your drive letter}} and press Enter .
    • Type mkdir foldername and press Enter (replace foldername with the name you want to give the new folder).
  4. For example, if you want to copy the contents of your personal Documents folder, you can enter that folder by typing cd C:\Users\yourname\Documents .
    • If there's a space in the name of the folder, such as C:\Users\yourname\rough drafts , you'll need to place the entire path in quotes like this: cd "C:\Users\yourname\rough drafts .
    • To see all the files inside of a folder, type dir and press Enter .
    • Type dir and press Enter to see existing files and folders. All folders are labeled with ''<DIR>'', which tells you that these are folders instead of files.
  5. If you want to copy just one file (no folders) onto your USB drive, it'll be easiest to use the copy command to do so. Here's how:
    • When you use the copy command, you'll use it like this: copy source destination . For example, to copy a file called cats.docx from your current directory to a folder called Pets on your USB flash drive that's assigned the F: drive letter, you'd do this:
      • copy cats.docx F:\Pets\
    • If you want to copy multiple individual files at once that end with the same file extension (e.g., .docx to the Pets folder on your flash drive, you'd type copy *.docx F:\Pets\ ). [1]
  6. If you're backing up an entire folder to your flash drive or otherwise need to copy multiple files, xcopy does a great job at that. For example, let's say you want to copy the entire folder C:\Users\yourname\rough drafts , including all of the files and folders inside of it, to the F drive. You'd use:
    • xcopy "C:\Users\yourname\rough drafts\" F:\ /e /h /r
    • Notice the trailing backslash \ at the end of the first path—this tells xcopy that you're copying a folder, not an individual file. [2]
    • Adding /e tells xcopy to copy all sub-folders.
    • Including /h ensures that xcopy also copies hidden files.
    • Adding /r also includes any read-only files. [3]
  7. Advertisement

Expert Q&A

Ask a Question
      Advertisement

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      About This Article

      Article Summary X

      1. Open the Command Prompt as an administrator if copying system files.
      2. Use the "copy" command to copy individual files.
      3. Use the "xcopy" command to copy entire folders and their contents.

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 116,201 times.

      Is this article up to date?

      Advertisement