SZanlongo
10/13/2014 - 12:06 PM

Takes in a text file and generates folders based on each line of text.

Takes in a text file and generates folders based on each line of text.

@echo off

for /f "tokens=*" %%a in (file.txt) do (
	mkdir "%%a"
)