💻

Part of series

Terminal & Command Line

All Journeys
📂

Navigating Your Computer

6 steps•20-25 min
Your Progress0% complete

Steps

📚 LearnStep 1 of 6

How Folders Work (Review)

The same structure, different view

Your computer's files are organized in a tree structure:

``` / (root - the top) ├── Users/ │ └── yourname/ (your home directory) │ ├── Desktop/ │ ├── Documents/ │ ├── Downloads/ │ └── Projects/ │ └── my-website/ │ ├── index.html │ └── styles.css ├── Applications/ └── ... ```

**In the terminal:** - You're always "in" a folder - Commands operate on that folder - You navigate by changing which folder you're "in"

**Special shortcuts:** - `~` = Your home directory (/Users/yourname) - `.` = Current directory - `..` = Parent directory (one level up) - `/` = Root (top of the tree)