HOW TO MAKE CON FOLDER IN YOUR COMPUTER

Did you ever think that why cant you create folders like con,nul , prn,etc..in our PC.So here's the solution..with this solution you can create almost any folder in your PC like the above mentioned..(prn,nul,con,etc)..So let's get started...

To make folder "con"in your PC,you have to make two Batch files.One file would be 'con maker.bat' and another file would be 'con remover.bat'.You have to create 'con remover.bat' because you cannot delete the folder "con" very easily.So here's the command for the batch file "con maker.bat".Paste this command in Notepad and save it as 'con maker.bat'.

@echo off
mkdir c:\con\
start c:
msg * con has been created..



Now the command for 'con remover.bat'.Paste this command in Notepad and save it as 'con remover.bat'.

@echo off
rmdir c:\con\
start c:
msg * con has been removed successfully.


Firstly, open 'con maker.bat' then you will see a folder name 'con' in C: drive and then open 'con remover.bat' to delete 'con' folder from your computer.

You can change the drive by changing the drive name and can change the path too...

0 comments:

Best Blogger TipsComment here