Created
July 24, 2023 09:39
-
-
Save cpuwolf/48b639bc30b36c9bbfd007f9a46fb53b to your computer and use it in GitHub Desktop.
Windows 10 batch get date time string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set hour=%time:~0,2% | |
if "%hour:~0,1%" == " " set hour=0%hour:~1,1% | |
echo hour=%hour% | |
set min=%time:~3,2% | |
if "%min:~0,1%" == " " set min=0%min:~1,1% | |
echo min=%min% | |
set secs=%time:~6,2% | |
if "%secs:~0,1%" == " " set secs=0%secs:~1,1% | |
echo secs=%secs% | |
set year=%date:~-4% | |
echo year=%year% | |
set month=%date:~4,2% | |
::if "%month:~0,1%" == " " set month=0%month:~1,1% | |
echo month=%month% | |
set day=%date:~7,2% | |
if "%day:~0,1%" == " " set day=0%day:~1,1% | |
echo day=%day% | |
set datetimef=%year%%month%%day%_%hour%%min%%secs% | |
echo datetimef=%datetimef% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment