如何在一個cmd行中轉換當前日期&時間轉換爲不帶空格的文件名?在一行(批處理文件)中替換並剪切或嵌套替換(x2)
我知道該怎麼做,在兩行:
set file_name=file_%date%-%time:~0,2%%time:~3,2%%time:~6,2%
rem echo %file_name% return "file_2015-08-01- 85012" and it's not ok
(包含空格)
set file_name=%file_name: =0%
echo echo %file_name% return "file_2015-08-01-085012" and it's ok
(無空格)
,但我不能在運行程序*。 bat文件 - 我必須運行「original」* .exe,它需要一行中的所有參數。
看看這個:http://stackoverflow.com/a/19799236/388389 – npocmaka