KOMPX.COM or COMPMISCELLANEA.COM   

Create multiple folders at once in Windows Command Prompt

Creating multiple folders at once from Windows Command Prompt / cmd:


MKDIR web-design folder1 "Acrobat Export PDF" new_line "Microsoft Windows"

When using batch file + list of folders from a text file. Batch file contents:


FOR /F "TOKENS=*" %%G IN (folders.txt) DO (
	MKDIR "%%G"
)

folders.txt:


Acrobat Export PDF
Microsoft Windows
folder1
new_line
web-design

Links

  1. MD: ss64.com/nt/md.html
Operating systems
More