A command allow you to execute a command like in CMD (command prompt).
Use this command for create a folder.
mkdir ”path\foldername”
They are important if the path or the folder's name contains a space.
Use this command for rename a folder.
move ”FolderPath\foldername” ”FolderPath\FolderNewName”
rmdir /S /Q ”FolderPath\FolderName”
With ”/Q”, the command don't ask you for a confirmation.