I have a question regarding windows command prompt. I tried to create a cmd file containing simple commands for the use of creating a folder named after the current date , have it create some files and finaly move the folder to a diffrent location. For some reasons the last part is not working right. Here is my code
cd Desktop
mkdir "%DATE%"
cd "%DATE%"
echo new > index.html
echo new > main.js
echo new > style.css
//move "%DATE%" MeineProjekte <---- thats the problem. Hope someone could help me on this. And if you have any better ways of displaying this code I would appreciate this aswell
I tried to google for a solution and had not mutch luck.