Sunday, 25 August 2013

कुछ सेकंडो में बनाये हजारो फोल्डर एक ही बार में

1.  निचे लिखे कोड को नोटपेड में कॉपी करे

@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. अब इसे 1000folders.bat  नाम से  सेव  करे !





No comments:

Post a Comment