28 Temmuz 2009, Salı
Tarih biçimi ve Windows toplu iş komut dosyası zaman
Windows (Windows XP) toplu komut dosya adları, vb daha sonra kullanmak için geçerli tarih ve saat biçimi için ihtiyacım var.
Benzer soru Yığın TaşmasıHow to append a date in batch filesama zaman, çok daha iyi.
Bu ÅŸimdiye kadar var:
echo ÚTE%
echo %TIME%
set datetimef=Úte:~-4%_Úte:~3,2%_Úte:~0,2%__%time:~0,2%_%time:~3,2%_%time:~6,2%
echo Útetimef%
hangi verir:
28/07/2009
8:35:31.01
2009_07_28__ 8_36_01
%Aşağıdaki alabilirim% ZAMAN içinde tek haneli bir saat için izin bir yolu var mı?
2009_07_28__08_36_01
CEVAP
28 Temmuz 2009, Salı
Bu komut ile sona erdi:
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=Úte:~-4%
echo year=%year%
set month=Úte:~3,2%
if "%month:~0,1%" == " " set month=0%month:~1,1%
echo month=%month%
set day=Úte:~0,2%
if "Úy:~0,1%" == " " set day=0Úy:~1,1%
echo day=Úy%
set datetimef=%year%%month%Úy%_%hour%%min%%secs%
echo datetimef=Útetimef%
Bunu PaylaÅŸ:
Listenin Windows tartışmalar geçti top...
Windows kullanarak toplu iş dosyası ol...
Ne zaman bir komut dosyası etiketi içi...
Nasıl bir toplu iş dosyası komut satır...
%~D0 Windows toplu iş dosyası ne demek...