Creating a folder with Command prompt on windows
In this tutorial we are going to create a folder using CMD On windows,
First step: Open Cmd on windows
Type cmd in the search bar and open the app
Second step: Navigate to the drive and folder
Here we need to navigate to the drive and folder that we want create our new folder
With our cmd opened we will type in D: and hit enter
In my case i have a drive in my pc D, you should replace the D with the drive letter in your pc
This will open the selected drive
Navigating to a directory inside the cmd is simple, after typing the Drive letter : then enter, type in cd folder name then hit enter
This command will select the folder specified
In this tutorial we will use main folder
Third step: making the directory
After selecting the folder we want to make our folder inside, we now need to give a command and hit enter to make our new directory
Making a directory in cmd is given by mkdir followed by the name of the directory you want to make
In this case we are going to create a folder named Tutorial
In the cmd type in mkdir Tutorial
Conclusion
Making a directory in cmd ist quite simple
Know the drive letter, type in the drive letter followed by a collon (:) , type in cd followed by the folder name in the drive, lastly type in mkdir folder name (new folder you want to create)




0 Comments