Remove leading space in time stamp in Windows

464 Views Asked by At

Have a dos command to look for a specific file in a directory. If its there then it moves and renames it with a datetime stamp to another directory else exit. Works great if it is executed between 10 am to 11:59 pm. But it leaves a space when it runs between 12 am - 9:59 am. See attached snippet. Not sure how to add a zero '0' where are they are spaces when it runs between 12 to 10 am. Appreciate the help and thank you in advance.

if exist "\serverdrive\in\File.txt" (move /Y "\serverdrive\in\File.txt" "\anotherdrive\out\OutFile-%date:~-4,4%%date:~-10,2%%date:~-7,2%%time:~0,2%%time:~3,2%%time:~6,2%.txt") else (exit 0)

OUTPUT that I am looking for is "OutFile-20200831162153.txt"

OutFile

0

There are 0 best solutions below