how to make infinite folders in pc
Answers
Answered by
4
open notepad and write
@echo off
:c
md %random%
goto c
@echo off
:c
md %random%
goto c
Answered by
6
@echo off
:top
md %random%
goto top
@ Echo off makes it so that seems to be a blank screen, but in reality they do hundreds of folders.
md % random% is command that creating folders with random names.
goto top - return to label: top, infinite loop
Save the bat file (eg: folderscreate.bat).
That's it, if you double click the file it will create a folder in the batch file the world ends.
:top
md %random%
goto top
@ Echo off makes it so that seems to be a blank screen, but in reality they do hundreds of folders.
md % random% is command that creating folders with random names.
goto top - return to label: top, infinite loop
Save the bat file (eg: folderscreate.bat).
That's it, if you double click the file it will create a folder in the batch file the world ends.
Similar questions
Hindi,
7 months ago
Science,
7 months ago
Science,
7 months ago
Science,
1 year ago
Social Sciences,
1 year ago
Chemistry,
1 year ago
Computer Science,
1 year ago