KOMPX.COM or COMPMISCELLANEA.COM   

Create a set of subfolders in each of multiple folders (Windows)

There is a number of folders. Their names may be both single words and contain spaces. The same set of subfolders is added to each of these folders.

Batch file contents:


FOR /D %%G IN (*) DO (
    FOR %%H IN (info inbox outbox links) DO ( 
		MKDIR "%%G\%%H"
	)
)

Links

  1. FOR /D: ss64.com/nt/for_d.html
  2. MD: ss64.com/nt/md.html
Operating systems
More