For example:
Use case: Move your Downloads folder to another drive without breaking apps.
This command creates a symlink named MyDocuments that points to the Documents folder located at C:\Users\Username\Documents . windows 11 symlink
Command (run Terminal as Admin): mklink /J C:\Users\You\Downloads D:\BigDrive\Downloads
If you prefer PowerShell, you use the New-Item cmdlet. PowerShell is often easier to read and supports tab-completion for paths. For example: Use case: Move your Downloads folder
In conclusion, symlinks are a powerful tool in Windows 11 that can simplify file management and organization. By understanding how to create and use symlinks, you can take advantage of their flexibility and space-saving benefits. Whether you're a developer, power user, or simply someone looking to streamline your workflow, symlinks are definitely worth exploring.
Do not delete the contents of a symlink thinking it will delete the link but keep the files. It will delete the actual files. PowerShell is often easier to read and supports
rmdir "link" (don't use del on dir symlinks)
No extra space used. Undo with rmdir "C:\LinkFolder" .