How to create & delete Folders like CON, COM1, PRN, AUX, CLOCK$, NUL in Windows XP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • HUNK
    New Member
    • Dec 2011
    • 1

    #1

    How to create & delete Folders like CON, COM1, PRN, AUX, CLOCK$, NUL in Windows XP

    We cannot make folders of these names because they are reserved for DOS prompt. But we can create and delete those with the help of DOS only.

    To create folder named 'con': Go to the command prompt and use the following commands:

    Code:
    c:\>mkdir \\.\c:\con  or  c:\>md\\.\c:\con
    To delete folder named 'con': Go to the command prompt and use the following procedure:

    Right-click on the folder CON
    Go to the Advanced options
    Un-check the Index Services then enter the following commands:

    Code:
    c:\>DEL \\.\c:\con
    or

    Code:
    c:\>rmdir \\.\c:\con


    Regards:
    Thakur Rahul Pratap Singh
    Developer & Tester
    Last edited by Rabbit; Feb 13 '12, 08:39 PM.
Working...