Create a new folder with cmd
To create a new folder using the Command Prompt (Cmd) in Windows, you can use the following command:
mkdir <folder_name>
Replace <folder_name>
with the name you want to give to your new folder.
For example, to create a folder named "MyNewFolder", you would type:
mkdir MyNewFolder
Press Enter to execute the command, and a new folder named "MyNewFolder" will be created in the current directory.
Note: If you want to create a folder in a specific directory, you can specify the full path to the folder. For example:
mkdir C:\Users\YourUsername\Documents\MyNewFolder
This will create a new folder named "MyNewFolder" in the "Documents" folder within the "YourUsername" directory.