Wednesday 8 May 2013

Make over 1,000 folders in few seconds

Make an unlimited amount of folders in any place you want.

1. Open notepad and type :

@echo off
:top
md %random%
goto top 







@echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random% is command that creating folders with random names.
goto top – return to label 
:top, infinite loop


2. Save it as 1000folders.bat

3. After that you will get icon that looks as show below.


No comments:

Post a Comment