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 is a more simpler solution.
@ECHO OFF set name=%date% echo %name% mkdir %name%