How-To Guide
How to Create a Folder
🗂️ How to Create a Folder
Folders help organize your files better. Here's how to create one using your computer's interface or the command line.
Windows (Graphical Way):
Right-click anywhere on your Desktop or inside a folder.
Select New → Folder.
Type the name you want and press Enter.
Windows (Using Command Prompt):
Open Command Prompt (
cmd
).Navigate to where you want the folder (optional):
Optional: Move to another directory cd Desktop
Now, create a folder:
Create folder command mkdir MyFolder
macOS & Linux (Using Terminal):
Open the Terminal.
Navigate to your desired directory (optional):
Change directory cd ~/Documents
Create a new folder:
Make directory command mkdir MyFolder
You’ll now see a folder named
MyFolder
in that directory.