@echo off ECHO CREATE MULTIPLE FOLDERS IN ONE OPERATION ECHO. ECHO Make the target folder have focus!!! echo. ECHO Enter all folder names on one line separated by spaces echo and then press ENTER echo (Enclose folder names containing spaces in quotes) ECHO. set /p folders="Type folder name(s) and press Enter: " for %%a in (%folders%) do md "%~1\%%~a"