Posts

Showing posts from May, 2010

CREATE NEW FOLDER(S) WINDOWS BATCH FILE

:: makedir.cmd :: by MAbuel 05-26-2010 :: Creates new folder(s) within the folder where this batch file was saved :: New folder names are separated by space (i.e. 112 113 114 will create 3 folders namely 112,113 and 114) :: To create new folders with filenames containing spaces, enclose the folder name with quotation marks :: (i.e. "melanie abuel" "phivolcs" will create 2 folders namely melanie abuel and phivolcs) ************************************************************************************* @echo off set /p name="Type folder name(s): " md %1 %name% ************************************************************************************