In windows we cannot create some folders in a normal way.Some such folders are
- CON
- COM1-COM9
- AUX
- LPT1- LPT9
The reason behind this,is that those names are well defined soft ports by microsoft
LPT ports are used by Printer and so on.
Solution:
we can make such folder using cmd
- open cmd
- type md .\CON\\
- now check CON folder is created in current working directory
- If u wanna remove it,type rd .\CON\\
Same process for all other folders
No comments:
Post a Comment