Я пытаюсь создать файлы журналов с динамическим именем на основе сегодняшней даты. Я использую примеры, найденные в Интернете, но ни один из них, похоже, не работает для меня.
C:\Users\Amit>echo hello > %date%.txt
The system cannot find the path specified.
C:\Users\Amit>echo hello > %date%.txt
The system cannot find the path specified.
C:\Users\Amit>echo hello > %date%.dat
The system cannot find the path specified.
C:\Users\Amit>echo hello > %date%.dat
The system cannot find the path specified.
C:\Users\Amit>echo hello > "%date%.dat"
The system cannot find the path specified.
C:\Users\Amit>echo hello > test.txt #this works
C:\Users\Amit>echo hello > %date%.txt
The system cannot find the path specified.
C:\Users\Amit>echo "testfile" >> backup-%DATE%.txt
The system cannot find the path specified.
C:\Users\Amit>echo "testfile" > backup-%DATE%.txt
The system cannot find the path specified.
Я также копирую и вставляю кучу из них. Я использую Windows 7.
Я не могу понять, какую ошибку я делаю.
Спасибо.