I did a backup of my data drive(G: ), and the backed up files are now hidden on the destination disk.
First I created a new folder (called "BACKUP_FILM")on the destination disk(Q: ). Then I used the XCOPY command to copy my data from the source disk:
xcopy G:\ Q:\BACKUP_FILM /D /E /C /R /H /I /K /Y
pause
Some how or another, the Q:\BACKUP_FILM folder becomes hidden. Sure, it's a minor irritant since I can see the hidden files anyway, but does anyone know how to fix this and prevent it from happening?
I found the function 'attrib' but do I need to call this function for each backup?
EXAMPLE:
xcopy G:\ Q:\BACKUP_FILM /D /E /C /R /H /I /K /Y
attrib /d /s -h -s Q:\BACKUP_FILM
pause
First I created a new folder (called "BACKUP_FILM")on the destination disk(Q: ). Then I used the XCOPY command to copy my data from the source disk:
xcopy G:\ Q:\BACKUP_FILM /D /E /C /R /H /I /K /Y
pause
Some how or another, the Q:\BACKUP_FILM folder becomes hidden. Sure, it's a minor irritant since I can see the hidden files anyway, but does anyone know how to fix this and prevent it from happening?
I found the function 'attrib' but do I need to call this function for each backup?
EXAMPLE:
xcopy G:\ Q:\BACKUP_FILM /D /E /C /R /H /I /K /Y
attrib /d /s -h -s Q:\BACKUP_FILM
pause