D
Don Culp
As a backup method, I use the following to copy all files from drive F: to a
backup folder on H:
xcopy f: H:\Backup /s /e /v /d /y /c
where
/s = subdirectories
/e = empty directories
/v = verify
/d = only newer files
/y = overwrite without confirmation
/c = continue on error
The /c is required because xcopy would otherwise abort when trying to copy
two hidden folders on F:
Recycler and "System Volume Information".
xcopy works fine. However, shortly after xcopy starts, the Backup folder
changes to a hidden folder. If I explore this folder I find that the text of
the Hidden option is dimmed so the Hidden option apparently cannot be
changed. I have tried changing Backup to a normal folder from a cmd window:
attrib -h Backup
but receive the response:
Not resetting system file - H:\Backup
How can I either prevent Backup from becoming a hidden folder or else later
change it back to a normal folder?
(Note: I can see Backup in Windows Explorer since I have set "Tools\Folder
options\View\Show hidden files and folders". This is not the issue. What I
need to do is have Backup as a normal folder.)
Windows XP Pro, SP2
Thanks,
Don Culp
backup folder on H:
xcopy f: H:\Backup /s /e /v /d /y /c
where
/s = subdirectories
/e = empty directories
/v = verify
/d = only newer files
/y = overwrite without confirmation
/c = continue on error
The /c is required because xcopy would otherwise abort when trying to copy
two hidden folders on F:
Recycler and "System Volume Information".
xcopy works fine. However, shortly after xcopy starts, the Backup folder
changes to a hidden folder. If I explore this folder I find that the text of
the Hidden option is dimmed so the Hidden option apparently cannot be
changed. I have tried changing Backup to a normal folder from a cmd window:
attrib -h Backup
but receive the response:
Not resetting system file - H:\Backup
How can I either prevent Backup from becoming a hidden folder or else later
change it back to a normal folder?
(Note: I can see Backup in Windows Explorer since I have set "Tools\Folder
options\View\Show hidden files and folders". This is not the issue. What I
need to do is have Backup as a normal folder.)
Windows XP Pro, SP2
Thanks,
Don Culp