Lets have some fun,
We can create Folders using just notepad.Just follow the easy steps given below to create any no. of folders using Notepad commands.
1 Open Notepad
2 Type the code given below :
@ Echo off
3 After this code type
md %random%
4 This both commands should be in a single notepad.Then this will give create 1 folder.You can create
any no. of folders you want.For that type : md %random% in a new line and so on.The no. of the last
given code will decide how much folders you want to create.
5 The code md is using to create folders. %random% this code provide a random numerical name for
the folders created.So in the place of %random% you can give any name so that the created folder
will have that name.
6 You want to save the file as .bat extension.That is, type .bat after your file name (for egs:- filename.bat)
And also change save as option to All files
7 Example : If i want to create 5 folders.So the code is :
@ echo off
md %random%
md %random%
md %random%
Save this is as .bat.Before that change save as option to all files.
We can create Folders using just notepad.Just follow the easy steps given below to create any no. of folders using Notepad commands.
1 Open Notepad
2 Type the code given below :
@ Echo off
3 After this code type
md %random%
4 This both commands should be in a single notepad.Then this will give create 1 folder.You can create
any no. of folders you want.For that type : md %random% in a new line and so on.The no. of the last
given code will decide how much folders you want to create.
5 The code md is using to create folders. %random% this code provide a random numerical name for
the folders created.So in the place of %random% you can give any name so that the created folder
will have that name.
6 You want to save the file as .bat extension.That is, type .bat after your file name (for egs:- filename.bat)
And also change save as option to All files
Click to enlarge |
Click to enlarge |
7 Example : If i want to create 5 folders.So the code is :
@ echo off
md %random%
md %random%
md %random%
md %random%
md %random%
Save this is as .bat.Before that change save as option to all files.
1 comment:
For more NOTEPAD tricks
Click here
Post a Comment