Search code examples
dosxcopy

Telling XCOPY to copy hidden folders as well as hidden files


I'm trying to get XCOPY to copy an entire directory tree and all its files, however, one of the directory paths includes a hidden folder, and although you can use the /h parm to specify copying hidden files, this doesn't seem to apply to hidden folders. I've been all over the docs for XCOPY and there doesn't seem to be one that deals with hidden folders. But perhaps someone knows differently?

`xcopy c:\profiles c:\aprofiles /r /e /h /v /y 

The above works fine except for the hidden folders. I suppose that I could change the hidden folders to make them non-hidden, but there are a few hundred of them.


Solution

  • As @xanatos says, it copies hidden folders in Windows 7.

    I couldn't get it to copy hidden folders in Windows 2003 Server, yes, even using the /h switch. Hidden files, yes, but not hidden folders.

    Weird.