Soft Link Windows __full__ May 2026
rmdir "LinkFolder" # For directory symlinks del "LinkFile.ext" # For file symlinks Or simply delete it in File Explorer like a normal file/folder. | Feature | Soft Link | Shortcut (.lnk) | |---------|-----------|------------------| | Transparency | Full (app sees target) | None (app sees .lnk file) | | Works in CMD | Yes | No | | Works as working directory | Yes | No | | Double-click behavior | Opens target directly | Opens target after .lnk processing |
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: soft link windows
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: rmdir "LinkFolder" # For directory symlinks del "LinkFile
mklink /D "C:\Projects\Current" "E:\Archive\Projects\2025\Current" Hard Link vs
mklink "C:\Users\Me\Desktop\report.pdf" "D:\Documents\Q1\report.pdf"
| 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 |