How to create a new folder using cmd
To create a new folder using the Command Prompt (Cmd), 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 the folder will be created in the current directory.
If you want to create a folder in a specific directory, you can specify the path to that directory followed by the folder name. For example:
mkdir C:\Users\YourUsername\Documents\MyNewFolder
This will create a new folder named "MyNewFolder" in the "Documents" directory within the "YourUsername" directory.
Note: If the folder already exists, the mkdir
command will not create a new folder and will instead display an error message.