Go Back   Digit's Technology Discussion Forum > Community > Tutorials

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 17-02-2007, 04:11 PM
sridatta's Avatar
sridatta sridatta is offline
An Esoteric Geek
 
Join Date: Mar 2006
Location: Bangalore
Posts: 285
Send a message via Yahoo to sridatta
Default Tutorial : How to create CON folder in windows

Hello guys...

Many ppl dont know that they cannot create "CON" folder in windows. (Type 1)

Some ppl dont know why they cant create it? (Type 2)

Very few know that they can still create it someway.. but donno why are they supposed to do exactly like that..(Type 3)

Now, After reading this tutorial, you will become one of the rest
__________________________________________________ _________________________

Type 1 :

Try out creating a folder named CON or LPT or COM1

Now, you have become Type 2 category.
__________________________________________________ _________________________

Type 2 :

Not only CON, we cannot create any of these
CON, PRN, AUX, CLOCK$, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9 and more

The reason is that con, prn, lpt1..lpt9, etc are underlying devices from the time dos was written. so if u r allowed to create such folders, there will be an ambiguity in where to write data when the data is supposed to go to the specified devices. In other words, if i want to print something, internally what windows does is -- it will write the data to the folder prn (virtually u can call it a folder, i mean prn, con, etc are virtual folders in device level). So if we are able to create con folder, windows will get confused where to write the data, to virtual con folder or real one.

So Now, Try this...

Open the Command prompt by Start -> Run and typing cmd

Code:
C:\> md \\.\c:\con
Now, Open My Computer and browse through the path where you created CON folder... Surprising.. ?? Yeah.. you have created it successfully

Now, try to delete the folder from My computer

OOPS!!! You cant delete it...

Now, try this in command prompt console

Code:
C:\> rd \\.\c:\con
Yeah!! You did it...
__________________________________________________ __________________________

Type 3 :

Well, let us now have a glance at how we were able to create it...

It is just because of the UNC Path (http://en.wikipedia.org/wiki/Univers...ng_Convention). The Universal Naming Convention, or UNC, specifies a common syntax to describe the location of a network resource, such as a shared file, directory, or printer.Since, these conventions did n't exist under pure DOS, they are not backward compatible. The UNC syntax for Windows systems is as follows..

\\RemoteHost\sharedfolder\resource

where RemoteHost is the computer name / IP address of the computer that you wish to connect through remotely for accessing shared folder. The rest is the path.

(Here \\remotehost\drive:\con doesn't make sense anyway, because without having a process on the remote host, there is no current 'console'). It would be a security hazard as well, having the serial and parallel ports accessible for everyone who is allowed to read or write in any single directory.

The "." in the command \\.\c:\con suggest the local server. Now, you are pointing to your own computer. since, you have all privilages on every folder of ur computer, you can easily create it.
__________________________________________________ _____________________________

Type 4 :

Ofcourse, Now, u r of type 4. What else i can say :/
__________________________________________________ _____________________________

P.S : Please post your comments..
Reply With Quote
  #2  
Old 17-02-2007, 04:24 PM
Pathik's Avatar
Pathik Pathik is offline
Google Bot
 
Join Date: Aug 2005
Posts: 9,470
Default Re: Tutorial : How to create CON folder in windows

Type 5:
Very old stuff..
Reply With Quote
  #3  
Old 17-02-2007, 04:28 PM
sridatta's Avatar
sridatta sridatta is offline
An Esoteric Geek
 
Join Date: Mar 2006
Location: Bangalore
Posts: 285
Send a message via Yahoo to sridatta
Default Re: Tutorial : How to create CON folder in windows

may be its new for some others...
Reply With Quote
  #4  
Old 17-02-2007, 04:40 PM
Arsenal_Gunners's Avatar
Arsenal_Gunners Arsenal_Gunners is offline
>:X
 
Join Date: May 2005
Location: Eboue's paradise
Posts: 1,536
Default Re: Tutorial : How to create CON folder in windows

i know windows does not allow this to be made but why the heck somebody will want to create a folder named con
Reply With Quote
  #5  
Old 17-02-2007, 04:44 PM
Pathik's Avatar
Pathik Pathik is offline
Google Bot
 
Join Date: Aug 2005
Posts: 9,470
Default Re: Tutorial : How to create CON folder in windows

well there r many reasons for that...
1. TP
2. suppose a movie called CON releases... now u wd obviously store it in a folder called CON na ????
Reply With Quote
  #6  
Old 17-02-2007, 04:45 PM
Arsenal_Gunners's Avatar
Arsenal_Gunners Arsenal_Gunners is offline
>:X
 
Join Date: May 2005
Location: Eboue's paradise
Posts: 1,536
Default Re: Tutorial : How to create CON folder in windows

whats TP
Reply With Quote
  #7  
Old 17-02-2007, 04:50 PM
Sykora's Avatar
Sykora Sykora is offline
I see right through you.
 
Join Date: Sep 2005
Location: Chennai
Posts: 579
Default Re: Tutorial : How to create CON folder in windows

Quote:
Originally Posted by vimal_mehrotra
whats TP
I'd guess something like "Time Pass"? I can't think of anything else.
__________________
I didn't make the world, I only try to live in it.
http://lucentbeing.com
-- Sykora --
Reply With Quote
  #8  
Old 17-02-2007, 04:57 PM
Pathik's Avatar
Pathik Pathik is offline
Google Bot
 
Join Date: Aug 2005
Posts: 9,470
Default Re: Tutorial : How to create CON folder in windows

well TP can mean only two things-
1.Time Pass
2.TelePortation
u guess.....
Reply With Quote
  #9  
Old 17-02-2007, 04:58 PM
sridatta's Avatar
sridatta sridatta is offline
An Esoteric Geek
 
Join Date: Mar 2006
Location: Bangalore
Posts: 285
Send a message via Yahoo to sridatta
Default Re: Tutorial : How to create CON folder in windows

Unfortunately You cannot directly copy any files/folders into it.. and you cant even directly delete the con folder.. Ofcourse you can copy them using DOS command prompt using

copy abc.txt \\.\c:\con

Its just to fulfill our curiosity on CON folder.. Many of my frenz still percieve that they cannot create CON folder.. so, just to clarify that.. i posted this..

Moreover, we also get to know about the UNC path..
Reply With Quote
  #10  
Old 19-02-2007, 02:30 PM
Sand's Avatar
Sand Sand is offline
Right Off the Assembly Line
 
Join Date: Feb 2007
Posts: 11
Thumbs up Re: Tutorial : How to create CON folder in windows

interesting one sridatta i always wanted to know why even though it is time pass it is still nice to know.
__________________
Evolution taught me that 'Sub kuch Chalta Hai' as long as it is 'Survival of the Fittest'! Belief in God taught me to treat everyone with kindness & respect, even if I am the fittest!
Reply With Quote
  #11  
Old 19-02-2007, 07:51 PM
::cyborg::'s Avatar
::cyborg:: ::cyborg:: is offline
In The Zone
 
Join Date: Oct 2005
Location: NEW DELHI
Posts: 404
Send a message via Yahoo to ::cyborg:: Send a message via Skype™ to ::cyborg::
Default Re: Tutorial : How to create CON folder in windows

@sridatta well interesting post friend
__________________
- KEEP SMILING
Reply With Quote
  #12  
Old 21-02-2007, 10:45 PM
Prajyot Prajyot is offline
Right Off the Assembly Line
 
Join Date: Feb 2007
Posts: 3
Default Re: Tutorial : How to create CON folder in windows

Thx Nice Information
Reply With Quote
  #13  
Old 22-02-2007, 02:07 AM
the.kaushik's Avatar
the.kaushik the.kaushik is offline
Xperience Web in Iphone..
 
Join Date: Aug 2006
Location: Bangalore
Posts: 991
Default Re: Tutorial : How to create CON folder in windows

though old one but prety nicely explained.. nice post
__________________
A universal plug-in for website to have better SEO
http://classictutorials.com/2009/11/21/greet-box-universal-blogger-v3-0/
Reply With Quote
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump





Upcoming Events

Thinkdigit  
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.