Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Telling XCOPY to copy hidden folders as well as hidden files [closed]

Tags:

xcopy

dos

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.

like image 382
Cyberherbalist Avatar asked Nov 04 '22 12:11

Cyberherbalist


2 Answers

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.

like image 120
Cyberherbalist Avatar answered Dec 18 '22 08:12

Cyberherbalist


funny I was just trying to xcopy and had the same issue, i know this is 7 years late but it might help

using /h /s /e seems to copy hidden files and directorys correctly

like image 27
LoveBug Avatar answered Dec 18 '22 08:12

LoveBug