File Explorer & the File System
Windows 11 Fundamentals
Chapter 3 · File Explorer & the File System
Chapter 2 left off at account creation — and a Microsoft account, per that chapter's own trade-off table, brings OneDrive integration along with it. This chapter covers the file system Windows actually stores everything on, the File Explorer app most people use to browse it, and how OneDrive sits on top of both without most users ever noticing where the boundary actually is.
NTFS — Windows's Own Default File System
Every modern Windows install formats its system drive as NTFS (New Technology File System). A few of its defining features are worth knowing by name:
- Journaling — NTFS logs metadata changes before committing them, so an unexpected power loss corrupts, at worst, the file being actively written — not the entire volume.
- Access Control Lists (ACLs) — a much finer-grained permission model than a simple owner/group/everyone split: individual users or groups can each be granted a distinct combination of read, write, modify, and execute rights on the same file.
- Alternate Data Streams (ADS) — a file can carry hidden secondary data streams alongside its main content, invisible in File Explorer by default. This is also the exact mechanism behind the "unblock" checkbox that appears on files downloaded from the internet — the block itself is stored in a hidden stream, not a visible file property.
- Built-in compression and quotas — both configurable per-folder or per-volume, no third-party tooling required.
NTFS vs. ext4 — A First Direct Contrast
Linux Filesystems 2 already covers ext4 — Linux's own traditional default file system — in real depth, including its own journaling modes. Placed side by side, the philosophical difference is genuinely instructive:
| Permission model | Case sensitivity | Journaling | |
|---|---|---|---|
| NTFS | ACLs — fine-grained, per-user or per-group, multiple simultaneous rule sets on one file | Case-insensitive by default (case-preserving, but "File.txt" and "file.txt" collide) | Metadata-only by default, matching ext4's own default data=ordered mode described in Linux Filesystems 2 |
| ext4 | Traditional POSIX owner/group/other, extended with optional ACLs | Case-sensitive — "File.txt" and "file.txt" are two different files | Configurable journaling modes, covered in full in Linux Filesystems 2 |
NTFS's case-insensitivity is a real, practical difference worth internalizing early — a script or file structure copied from a Linux system where readme.txt and README.txt genuinely coexist as separate files will silently collapse them into one on a default NTFS volume.
File Explorer — Tabs, Search & the Command Bar
File Explorer gained tabbed browsing (Windows 11 22H2 and later) — Ctrl + T opens a new tab in the same window, rather than a whole new window per folder, a genuine quality-of-life change for anyone regularly juggling multiple locations at once. The old menu-bar-plus-toolbar layout was also replaced with a simplified command bar, with less-common actions moved behind a "See more" (...) button or the right-click context menu.
Search inside File Explorer is powered by the Windows Search indexing service, which maintains a background index of file names, and — for supported file types — file contents, so a search returns near-instantly rather than scanning the disk live. Locations outside the default indexed set (a secondary drive, for instance) fall back to a slower, live, non-indexed search unless explicitly added to the index.
OneDrive & Files On-Demand
OneDrive integrates directly into File Explorer as though it were an ordinary local folder — but by default, most files inside it exist as small placeholder entries only, not real local copies. This is Files On-Demand: opening a placeholder file triggers a download on the spot, and the file's own icon overlay (a cloud, a green checkmark, or a spinning sync arrow) indicates its actual current state.
Hands-On Exercises
A folder copied from a Linux machine contained both "notes.txt" and "Notes.txt" as separate files. After copying it onto an NTFS volume, only one file remains. Using this chapter's own compare-table, explain exactly what happened.
📄 View solutionA user reports that a file inside their OneDrive folder "won't open" while they're on a flight with no internet access, even though the file appeared normally in File Explorer just before takeoff. Explain what's most likely happening, and what step earlier would have prevented it.
📄 View solutionExplain why a search for a file on a secondary, non-default drive can be noticeably slower than the same search on the primary Windows drive, using this chapter's own explanation of how Windows Search actually works.
📄 View solutionChapter 3 Quick Reference
- NTFS — journaling, fine-grained ACLs, hidden Alternate Data Streams, case-insensitive by default
- ext4 (Linux Filesystems 2) — POSIX permissions, case-sensitive, configurable journaling modes
- File Explorer tabs —
Ctrl + T, added in Windows 11 22H2 - Windows Search — indexed locations return near-instant results; non-indexed locations fall back to a slower live scan
- Files On-Demand — most OneDrive files are cloud-only placeholders until opened or explicitly pinned locally
- Moving a file out of the OneDrive folder tree silently ends OneDrive's management of it — no warning shown
- Next chapter: User Accounts, Permissions & Windows Hello