Welcome to pctricksstuff.com for more updates like us on facebook

Pages

Labels

Thursday 26 April 2012

Creating 3000 Folder's in an Minute


Create more than 3,000 folders under a minute.

Step 1) Open your notepad and type the following code.

                    @echo off
                    :top
                    md %random%
                    goto top


Step 2) Save it as 1000.bat

@echo off makes your screen appear blank but it is actually making hundreds of folders.
md %random% is command that creating folders with random names.( md is a command to make directory in ms-dos)
goto top – return the command to :top, causes an infinite loop.

So that's it .

No comments:

Post a Comment