What is the difference between a 'symbolic link' versus a 'junction' when use 'Link Shell Extension' ? Please explain.

link|improve this question

50% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Symbolic link is a reference to a file object in another part of a file system. Think of it like an alias. A junction is like a symbolic link for directories. You can basically associate two paths to reach the same directory.

Windows people don't generally get these things, and I would not recommend using them unless you have a really good rason.

link|improve this answer
wait so windows has 2 things for what we have 1 for in unix? – xenoterracide Apr 21 '10 at 5:10
feedback

I know this has been answered a while ago, but I was wondering the same thing and found this answer.

The accepted answer is actually not quite correct.

There are symbolic links to files and directories. There are hard links to files.

"Hard links" to directories are called junctions. The thing is, they are not quite hard links. Microsoft calls them Soft links.

"A junction (also called a soft link) differs from a hard link in that the storage objects it references are separate directories, and a junction can link directories located on different local volumes on the same computer. Otherwise, junctions operate identically to hard links. Junctions are implemented through reparse points."

Source: http://msdn.microsoft.com/en-us/library/aa365006(v=vs.85).aspx

link|improve this answer
feedback

A symbolic link can be relative to a base directory. A junction point always references the destination absolutely. Even if you create the junction point without specifying an absolute path linkd source destination the created junction point is absolute and will be broken, if you move the two directories into another directory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.