ADVERTISEMENTS
Creating a folder with 'con' as folder name is not possible in Windows. This is because 'con' is a reserved word since the DOS OS was created. The word 'con' stands for console. But there is a way to create a folder named 'con' at any location. Thats true! Run the following command in command prompt :
md\\.\\C:\\con
This will create a folder with 'con' as its name. as shown below.
To Delete the Folder:
Run the following command in command prompt :
rmdir\\.\\C:\\con
0 comments