View Single Post
Old 08-24-2016, 04:55 AM   #10
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 21,829
Karma: 30277270
Join Date: Mar 2012
Location: Sydney Australia
Device: none
Quote:
Originally Posted by bobnelsonfr View Post
Thanks for the additional information. ... I think...

As a result, I have just spent an hour or two learning about junctions, hard links, and soft links.

My conclusion is that for my needs (linking on a single computer, not across the local net) the following commands are functionally identical:

(command line from anywhere as long as junction.exe is in C:\system32)
junction.exe "C:\Program Files\Calibre2" "D:\Win_10_apps\Calibre2"

(command line from within C:\Program Files)
mklink /D Calibre2 D:\Win_10_apps\Calibre2

Is there any advantage in mklink on a single computer? I will use mklink in the future because it is an internal command, but is there any point in going back on the junctions I have already created with junction.exe?
IMO junctions are a twentieth century MS only artefact, they don't do anything that can't be done with a symlink; but a symlink can do more than a junction, they can be used on - folders and files, across networks, with absolute or relative paths, and they are POSIX compliant.

It it were me, I would ditch any junctions I created in favour of symlinks, in fact that's what I did when I got Vista in 2007, back then I had hundreds of the beggars.

BR

Last edited by BetterRed; 08-24-2016 at 05:12 AM.
BetterRed is offline   Reply With Quote