I'm writing a little piece of code in which I should detect if an NSURL
contains a symbolic link (i.e., symbolic file components other than the last one should also be detected). To do this, I confront the NSURL
itself with the NSURL
returned by -URLByResolvingSymlinksInPath
. The problem is that this method seems to return all symbolic links in lowercase. Is there another way to solve this problem?
Either I really did something wrong or this bug was fixed with the latest Mountain Lion update. Now all symlinks are correctly resolved.