Batch Script - MD
Questo comando batch crea una nuova directory nella posizione corrente.
Sintassi
md [new directory name] 
    Esempio
@echo off 
md newdir 
cd newdir 
cd Rem “Goes back to the parent directory and create 2 directories” 
cd.. 
md newdir1 newdir1 
cd newdir1 
cd 
cd.. 
cd newdir2 
cd 
    Produzione
Il comando precedente produce il seguente output.
C:\newdir 
C:\newdir1 
C:\newdir2 
                        