Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: move a hidden folder  (Read 3974 times)

0 Members and 1 Guest are viewing this topic.

tawy

  • Guest
move a hidden folder
« on: September 18, 2009, 08:32:41 PM »

how can i move a hidden folder using ms dos batch command move
i tried but it worked only with unhidden folder
please help
thanks

Helpmeh



    Guru

  • Roar.
  • Thanked: 123
    • Yes
    • Yes
  • Computer: Specs
  • Experience: Familiar
  • OS: Windows 8
Re: move a hidden folder
« Reply #1 on: September 18, 2009, 09:16:39 PM »
Try using xcopy then deleting the original.
Where's MagicSpeed?
Quote from: 'matt'
He's playing a game called IRL. Great graphics, *censored* gameplay.

billrich

  • Guest
Re: move a hidden folder
« Reply #2 on: September 22, 2009, 09:03:24 AM »
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.