How do you create a hardlink (as opposed to a symlink or a Mac OS alias) in OS X that points to a directory? I already know the command "ln target destination" but that only works when the target is a file. I know that Mac OS, unlike other Unix environments, does allow hardlinking to folders (this is used for Time Machine, for example) but I don't know how to do it myself.
|
|
|||||||
|
|
|
My case was that I found out that from a windows virtual machine, I cannot follow symlinks. (i wanted to test some HTML pages in Internet Explorer). And my directory structure had symlinks for CSS and images folders. My workaround to solve the problem was a different approach than the other answers implied. I used This solved my problem without using hard links to directories. And it's actually an easy solution if you're just working on a small set of files.
|
||
|
|
|
|
You can't do it directly in BASH then. However... I found an article here that discusses how to do it indirectly: http://www.mactech.com/articles/mactech/Vol.23/23.11/ExploringLeopardwithDTrace/index.html by compiling a simple little program:
|
||
|
|
|
|
The trouble with hard-linking directories is the very real danger of recursing through a directory structure, and never finding the end of it. Soft links to directories are significantly safer. My university professors spent quite a while explaining why infinite loops were bad, so I avoid hard links. |
||
|
|
|
|
Yes it's supported by the kernel and the filesystem, but since it's not intended for general usage it's not exposed to the shell. You could probably work out which APIs Time Machine uses and wrap them in a commandline tool, but it'd be better to take the hint and steer well-clear. |
||
|
|
|
The short answer is you can't. :) (except possibly as root, when it would be more accurate to say you shouldn't.) Unixes only allow a set number of links to directories - ".." from within all its children and "." from within itself. Anything else is potentially a recipe for a very confused directory tree. This is/was apparently a design decision by Ken Thompson. (Having said that, apparently Apple's Time Machine does do this :) ) |
||
|
|
