Guided path: Storage path
Step 1 of 5
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
- 1Lower drivers expose disks and volumes to the OS.
- 2File systems interpret on-disk structures into directories, files, and metadata.
- 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
Disks, partitions, and volumes
How physical or virtual disk space becomes manageable logical storage.
File systems
NTFS and friends translating raw storage into directories, files, and metadata.
Cache Manager
How Windows speeds file access by coordinating cached file data with memory.
Reparse points & symlinks
Junctions, symlinks, and filter-driver namespaces that redirect paths.
You should read next
Ranked from your current topic, related links, branch depth, and any active guided path.
intermediate
Disks, partitions, and volumes
How physical or virtual disk space becomes manageable logical storage.
Next step in your guided path
intermediate
File systems
NTFS and friends translating raw storage into directories, files, and metadata.
Go deeper in this branch
intermediate
Reparse points & symlinks
Junctions, symlinks, and filter-driver namespaces that redirect paths.
Go deeper in this branch