The Computer Oracle

Does Windows7 support symbolic links (folder 'shortcuts')?

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 3

--

Chapters
00:00 Does Windows7 Support Symbolic Links (Folder 'Shortcuts')?
00:40 Accepted Answer Score 25
01:34 Answer 2 Score 2
01:49 Thank you

--

Full question
https://superuser.com/questions/234422/d...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows7 #symboliclink

#avk47



ACCEPTED ANSWER

Score 25


Yes.

NTFS had the feature for some time, junctions have been available longer, and Vista was the first version of Windows with support, Windows 7 has improved it, apparently, but I'm not sure of the specifics off the top of my head.

From within an elevated (run as admin) cmd window you need to use the command mklink, usage is as such:

mklink <flag> link target

This creates link which points to target, both can be absolute or relative paths, link must not exist and obviously target must.

You can use the available flags to adjust the type of link created:

<no flag> - file symbolic link
/H        - file hard link
/D        - directory symbolic link
/J        - directory junction (hard link, essentially)



ANSWER 2

Score 2


Yes! I missed this feature in XP but they did add it in Widows 7. check out http://www.windows7home.net/how-to-create-symbolic-link-in-windows-7/