Social Icons

Wednesday, 15 August 2012

How to create infinite folders


Open notepad.
Copy this code to Notepad.

@echo off
 :top
 md %random%
 goto top

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

Save the file with .bat extension (Caution: first create one folder and save this .bat file inside that folder)

That's it, if you double click the file cmd will be popped up and it will create infinite folders wherever the batch file is located. Close cmd when you want to stop the execution.




This batch code is helpful to store some private data in particular folder from thousands of folder.


0 comments:

Post a Comment