home Home work Jobs newspaper News help How To person Portfolio
How to Create a Folder | How-To Guide
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.

  1. Windows (Graphical Way):

    • Right-click anywhere on your Desktop or inside a folder.

    • Select New → Folder.

    • Type the name you want and press Enter.

  2. 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
  3. 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.