Guided path: Storage path

Step 1 of 5

Continue to Disks, partitions, and volumes
beginner

Storage & file systems

Disks, volumes, cache, and the file-system layers that make persistence usable.

Official Microsoft docs

Closest official references related to this topic on Microsoft Learn.

Why it matters

Windows storage is much more than 'a disk and a folder'. Volumes, file systems, caching, encryption, and namespace translation all shape how persistence works.

Mental model

Storage is layered: hardware or virtual disk -> partition/volume -> file system -> cache -> application-visible paths and handles.

Windows building blocks

Names and paths you can look for in Task Manager, Explorer, or documentation.

  • Componentvolmgr / disk class

    Volume and disk stacks

Go one level deeper

Extra detail for readers who want more precision before opening a child topic.

  • Volume managers present drive letters; partition managers sit below them on the stack.
  • NTFS stores metadata in the MFT; USN journal tracks file changes for indexing/backup.

How it works

  1. 1Lower drivers expose disks and volumes to the OS.
  2. 2File systems interpret on-disk structures into directories, files, and metadata.
  3. 3The cache manager and memory manager collaborate to reduce expensive disk access.

Key terms

Volume
A logical storage unit presented to the OS for I/O.
NTFS
The primary Windows file system for general-purpose storage.
Cache Manager
The subsystem that accelerates file I/O through cached mappings.

Opening a document

The path you type maps through namespaces and file-system structures long before bytes are returned to your application.

Common misconception

A drive letter is not a disk. It is just one namespace view over a lower storage stack.

Go deeper

You should read next

Ranked from your current topic, related links, branch depth, and any active guided path.

Related topics