批次或分隔日期和时间

时间:2011-02-01 11:38:12

标签: datetime batch-file

我正在寻找的是批处理文件或delim,它可以发现当前的日期和时间,并将其放在文本文件的不同行中,例如:

输出文本文件:

[date]                  (does not change)
2011/02/01              (new line)
13:34:00                (new line)

可以在批处理文件中找到%date%%time%的负载,但它会在一行中给出答案。帮助

1 个答案:

答案 0 :(得分:1)

你可以单独回复两行(批量):

rem This will append the date and time on separate lines
echo The date: %date% >> output.txt
echo The time: %time% >> output.txt