xcopy include folder

batch-file

Solution

xcopy C:\Users\user\Folder C:\Users\user\Desktop\Folder /E /I

What about this?

Problem

This should be a simple question, but I haven't been able to find an answer. I'd like to copy Folder (not just the contents) to the Desktop. Everything I've tried takes just the contents of the folder. I've tried what I have below, but the contents are still only copied. ``` xcopy C:\Users\user\Folder C:\Users\user\Desktop /E ```

Original source