Skip to main content

How to create 50 folders at once using cmd.exe


  • Lets say you want to create 50 folders at once without creating each and typing its name, you just want to create all of them in a go, this is how you would do it.

     1.Start cmd.exe, if you are not sure how to, check one of the tutorials and it will show you how.
     2.After you have started cmd, create a folder to contain all your folders type md group 
     3.No create your 50 folders inside this folder called 'group', type for /l %i in (1,1,50) do md group\%i

   

Comments

Popular posts from this blog

Zavigne

How to get your computer's information like the IP address,RAM,HDD MEMORY e.t.c

Ever been called by a technician and require your IP address or your system version 32bit,64bit etc and wondered how to get this type of information about your computer,well this is how you would get it.     1.Start cmd.exe and type systeminfo the press 'enter' and you will get all the info bout your     hardware,software etc

Simple loop in cmd

Ever wondered how to make a loop in cmd  1.start cmd.exe 2.Simple type for /l  %i in (1,1,10) do echo %i