Folders (or directories) are containers for files that enable you to organise your data. This tutorial will show you how to create your own folders.
There are a number of techniques to create a folder, all of which achieve the same effect.
First Method
- Right click on an open area of your desktop, or in an open area of Windows Explorer.
- Then left click New
- Then left click Folder.
Once your folder appears either on your desktop or in Windows Explorer you will notice that the folder name is highlighted. This is giving you the opportunity to name your folder. It is always best to give your folder a very memorable name that accurately describes its contents.
- Type in the name you want to give to your newly created folder, and then hit Enter to complete the process.
Second Method
This method is for use in Windows Explorer only.
- Open up Windows Explorer ((Hold down the Windows Key and press E) or left click Start/Programs/Accessories/Windows Explorer)
- Navigate to the place you where you want your new folder to be created.
- Then from the top toolbar click File
- Then left click New
- Then left click Folder
Once your folder appears either on your desktop or in Windows Explorer you will notice that the folder name is highlighted. This is giving you the opportunity to name your folder. It is always best to give your folder a very memorable name that accurately describes its contents.
- Type in the name you want to give to your newly created folder, and then hit Enter to complete the process.
Third Method
This method can only be used by Windows XP, and Windows 2003 users.
- Open My Computer ((Left click Start/My Computer) or double click the My Computer icon on your desktop)
- Navigate to the place you where you want your new folder to be created.
- Then left click Make a new folder from the File and Folder Tasks menu in your Common Tasks toolbar.
Once your folder appears either on your desktop or in Windows Explorer you will notice that the folder name is highlighted. This is giving you the opportunity to name your folder. It is always best to give your folder a very memorable name that accurately describes its contents.
- Type in the name you want to give to your newly created folder, and then hit Enter to complete the process.
How to make a folder using the Command Prompt
To start the command prompt in Windows left click Start then Run. Type in "CMD" (without the "") and hit Enter.
- On the command prompt type:
Code:
mkdir foldername
and then hit Enter.
- You can then use:
Code:
dir
and then hit Enter to make sure your folder has been created.
Note: You cannot have spaces in your folder names unless you wrap the name in "". For example:
Code:
How to make many folders using the Command Prompt
It is also possible to make many folders in one go using the command prompt.
To start the command prompt in Windows left click Start then Run. Type in "CMD" (without the "") and hit Enter.
- On the command prompt type:
Code:
mkdir foldername1 foldername2 foldername3 foldername4
and then hit Enter.
Note: You cannot have spaces in your folder names unless you wrap the name in "". For example:
Code:
