Soft Link Windows | Link
mklink /D "C:\Users\Me\OneDrive\Projects" "D:\LocalProjects\Active" Move a bloated game folder from C:\Program Files\HeavyGame to a larger D: drive without reinstalling:
mklink /D "C:\Program Files\HeavyGame" "D:\Games\HeavyGame" Create desktop shortcuts that behave like real folders: soft link windows
You create a file that looks and behaves like the real file, but it’s just a signpost to the actual data stored elsewhere. Soft Link vs. Hard Link vs. Junction Windows actually offers three types of links. Here’s the essential distinction: Junction Windows actually offers three types of links
| Feature | | Hard Link | Junction | |---------|------------------------|---------------|---------------| | Scope | Files or directories (cross-volume) | Files only (same volume) | Directories only (cross-volume) | | Target deletion | Link becomes broken | Link still points to original data | Becomes broken | | Shows real path | Yes (in properties) | No (appears as original file) | Yes | | Can point to network | Yes (with UNC paths) | No | No | soft link windows
mklink "C:\Users\Me\Desktop\report.pdf" "D:\Documents\Q1\report.pdf"
mklink /D "C:\Projects\Current" "E:\Archive\Projects\2025\Current"