1.

Solve : move a hidden folder?

Answer»
how can i move a hidden folder using ms dos batch command move
i TRIED but it worked only with unhidden folder
please help
thanksTry using xcopy then deleting the original. You may change the attributes of the hidden files and FOLDERS:


C:\>attrib /?
Displays or changes file attributes.

ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [drive:][path][filename]
[/S [/D]]

+ Sets an attribute.
- Clears an attribute.
R Read-only file attribute.
A Archive file attribute.
S System file attribute.
H Hidden file attribute.
[drive:][path][filename]
SPECIFIES a file or files for attrib to process.
/S PROCESSES matching files in the current folder
and all SUBFOLDERS.
/D Processes folders as well.

C:\>

The copy and delete method suggested above is safer.


Discussion

No Comment Found