I don\'t know much about windows .bat file syntax. My simple requirement is to create a folder at a specific location with name as current date. I tried searching this on go
this worked better for me,
@echo off set temp=%DATE:/=% set dirname="%temp:~4,4%%temp:~2,2%%temp:~0,2%" mkdir %dirname%