How macOS actually works
Finder shows you a friendly picture. The Terminal shows you the truth. They are the same filesystem described two different ways.
/Users/sam/Documents/report.pdf
Everything starts at /, the root. There are no drive letters — additional disks appear under /Volumes.
~ is shorthand for your home folder, so ~/Documents/report.pdf is the same file.
| Path | What |
|---|---|
/Applications | Apps for everyone |
/Users/you or ~ | Your home folder |
/Volumes/DriveName | Mounted disks |
/System | macOS — protected |
/private/var, /tmp | System temporary files |
/opt/homebrew | Homebrew on Apple Silicon |
/usr/local | Homebrew on Intel, and other Unix software |
Finder localises and prettifies. A folder shown as "Documents" may be Documents on disk regardless of your system language. Worse, Finder hides the volume structure: under APFS your files actually live on a Data volume at /System/Volumes/Data, which is transparently overlaid onto / by firmlinks. Both paths reach the same file.
cd ~/Documents/My\ Project
cd "~/Documents/My Project"
Either escape the space with a backslash or quote the whole path. This is the single most common Terminal frustration, and the reason a search tool that offers a shell-escaped copy of a path saves real time.
Your home folder — /Users/yourname. It is expanded by the shell, so it works in Terminal and in Finder's Go to Folder box.
APFS separates the read-only system volume from your data. Firmlinks make both appear under /.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac